I'm trying to investigate a problem with a plugin install failure (Announcements) but can't get the logging to record anything other than 'filtering' action.
(Note: I'm currently moving servers and the logging previously worked. This is version 1.2.12.)
I have tried the following:
$g_log_level = LOG_DATABASE;
$g_log_level = LOG_AJAX | LOG_DATABASE | LOG_EMAIL | LOG_EMAIL_RECIPIENT | LOG_FILTERING | LOG_LDAP;
$g_log_level = -1;
In the last two cases I get logging activity, but it only reports 'filtering' action.
Logging only filtering
Moderators: Developer, Contributor
Re: Logging only filtering
$g_log_destination = 'file:d:/logs/mantis2.log';
It does write to the file, just not all that I had hoped for.
It does write to the file, just not all that I had hoped for.
Re: Logging only filtering
You have to set also if you want to log database activity. (no longer needed in version 1.3)
Code: Select all
$g_show_queries_list = ON;
$g_show_queries_count = ON;