A week ago my logging from EspoCRM stopped. The logs directory has previous logs but nothing current.
Version 8.1.5
Gigs of free disk
Permissions set per documentation
EspoCRM seems to be running fine.
Config.php:
'language' => 'en_US',
'logger' => [
'path' => 'data/logs/espo.log',
'level' => 'WARNING',
'rotation' => true,
'maxFileNumber' => 7
],
Config-internal.php
'logger' => [
'level' => 'WARNING', // DEBUG, INFO, NOTICE, WARNING, ERROR
'maxFileNumber' => 7,
'printTrace' => false, // to print an exception backtrace,
'sql' => false, // log SQL queries
'databaseHandler' => false // the log will be available in the UI
],
There are several reasons I need to get this working again, not the least of which is preparing for an upgrade.
Any ideas on how the logging "subsystem" can be debugged with logs?
Version 8.1.5
Gigs of free disk
Permissions set per documentation
EspoCRM seems to be running fine.
Config.php:
'language' => 'en_US',
'logger' => [
'path' => 'data/logs/espo.log',
'level' => 'WARNING',
'rotation' => true,
'maxFileNumber' => 7
],
Config-internal.php
'logger' => [
'level' => 'WARNING', // DEBUG, INFO, NOTICE, WARNING, ERROR
'maxFileNumber' => 7,
'printTrace' => false, // to print an exception backtrace,
'sql' => false, // log SQL queries
'databaseHandler' => false // the log will be available in the UI
],
There are several reasons I need to get this working again, not the least of which is preparing for an upgrade.
Any ideas on how the logging "subsystem" can be debugged with logs?
Comment