1
0
Fork 0

Enhance syslog logging

This commit is contained in:
Philipp Holzer 2021-12-12 22:45:22 +01:00
commit 2413627de9
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
4 changed files with 18 additions and 2 deletions

View file

@ -325,6 +325,14 @@ return [
// Sets the logging adapter of Friendica globally (monolog, syslog, stream)
'logger_config' => 'stream',
// syslog flags (Integer)
// Sets the syslog flags in case 'logger_config' is set to 'syslog'
'syslog_flags' => LOG_CONS | LOG_PID | LOG_ODELAY,
// syslog flags (Integer)
// Sets the syslog facility in case 'logger_config' is set to 'syslog'
'syslog_facility' => LOG_USER,
// maintenance_start (String)
// Start of the window for the daily maintenance cron call.
// The system timezone is used when no timezone is defined here.