Hi
I need to use syslog in production environment. what i have to do to enable this feature in cakephp 3.x?
But now i have used normal file log and write arl error in the error.log file. This is configured like this what i am giving in following
‘Log’ => [
‘debug’ => [
‘className’ => ‘Cake\Log\Engine\FileLog’,
‘path’ => LOGS,
‘file’ => ‘debug’,
‘levels’ => [‘notice’, ‘info’, ‘debug’],
],
‘error’ => [
‘className’ => ‘Cake\Log\Engine\FileLog’,
‘path’ => LOGS,
‘file’ => ‘error’,
‘levels’ => [‘warning’, ‘error’, ‘critical’, ‘alert’, ‘emergency’],
],
],
would i have to delete this code if i want to implement syslog or anything else? please advice me.