diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2023-07-17 15:08:08 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2023-07-17 15:08:08 +0200 |
commit | f840c08dd6468c97a90468335ff829af6183e986 (patch) | |
tree | 1c4ced8331b22d1c18afe9b8914e6be919acc54e /config | |
parent | 61167e31497ddaa6df18546d3406e45eadf17af5 (diff) | |
download | nextcloud-server-f840c08dd6468c97a90468335ff829af6183e986.tar.gz nextcloud-server-f840c08dd6468c97a90468335ff829af6183e986.zip |
docs(config): inform about log.backtrace
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 5301a2bf811..210d0a8e8ce 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -999,6 +999,16 @@ $CONFIG = [ ], /** + * Enables logging a backtrace with each log line. Normally, only Exceptions + * are carrying backtrace information which are logged automatically. This + * switch turns them on for any log message. Enabling this option will lead + * to increased log data size. + * + * Defaults to ``false``. + */ +'log.backtrace' => false, + +/** * This uses PHP.date formatting; see https://www.php.net/manual/en/function.date.php * * Defaults to ISO 8601 ``2005-08-15T15:52:01+00:00`` - see \DateTime::ATOM |