Updated to 1.2 and I noticed two new log files being written to /tmp, the return value of sys_get_temp_dir(). The files are cacti-sql.log and cacti-option.log both located in the defined /tmp directory.
I had to comment out the few relevant lines in lib/database.php and lib/functions.php to get that logging to stop because it was generating large files in a short period of time.
I set the following constants to true thinking they'd stop the logging... nope.
Code:
define('DEBUG_READ_CONFIG_OPTION', TRUE);
define('DEBUG_READ_CONFIG_OPTION_DB_OPEN', TRUE);
Are these two logs hard coded for a reason or am I completely missing how to configure these two log files?
Thanks.