diff --git a/.env.example b/.env.example index 6ef2cb54..20bcd7cc 100644 --- a/.env.example +++ b/.env.example @@ -54,8 +54,8 @@ IS_DEMO_APP=false # The log channel defines where your log entries go to. # 'daily' is the default logging mode giving you 7 daily rotated log files in /storage/logs/. -# Several other options exist. You can use 'single' for one big fat error log (not recommended). -# Also available are 'syslog', 'errorlog' and 'stdout' which will log to the system itself. +# Also available are 'errorlog', 'syslog', 'stderr', 'papertrail', 'slack' and a 'stack' channel +# to combine multiple channels into a single one. LOG_CHANNEL=daily diff --git a/Dockerfile b/Dockerfile index e8cbc820..3da1cbbe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -128,9 +128,9 @@ ENV \ # The Demo mode reset the app content every hours and set a generic demo user. IS_DEMO_APP=false \ # The log channel defines where your log entries go to. - # 'daily' is the default logging mode giving you 5 daily rotated log files in /storage/logs/. - # Several other options exist. You can use 'single' for one big fat error log (not recommended). - # Also available are 'syslog', 'errorlog' and 'stdout' which will log to the system itself. + # 'daily' is the default logging mode giving you 7 daily rotated log files in /storage/logs/. + # Also available are 'errorlog', 'syslog', 'stderr', 'papertrail', 'slack' and a 'stack' channel + # to combine multiple channels into a single one. LOG_CHANNEL=daily \ # Log level. You can set this from least severe to most severe: # debug, info, notice, warning, error, critical, alert, emergency diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 08e1e4e6..62141e60 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -28,9 +28,9 @@ services: # The Demo mode reset the app content every hours and set a generic demo user. - IS_DEMO_APP=false # The log channel defines where your log entries go to. - # 'daily' is the default logging mode giving you 5 daily rotated log files in /storage/logs/. - # Several other options exist. You can use 'single' for one big fat error log (not recommended). - # Also available are 'syslog', 'errorlog' and 'stdout' which will log to the system itself. + # 'daily' is the default logging mode giving you 7 daily rotated log files in /storage/logs/. + # Also available are 'errorlog', 'syslog', 'stderr', 'papertrail', 'slack' and a 'stack' channel + # to combine multiple channels into a single one. - LOG_CHANNEL=daily # Log level. You can set this from least severe to most severe: # debug, info, notice, warning, error, critical, alert, emergency