From d2427364a5f88d02389cab48f9a2f8d70c6f66d9 Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Wed, 17 Jan 2024 08:56:44 +0100 Subject: [PATCH] Update available log channels in .env comments - Resolves #279 --- .env.example | 4 ++-- Dockerfile | 6 +++--- docker/docker-compose.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) 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