diff options
author | Robin Appelman <robin@icewind.nl> | 2022-05-13 15:06:47 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2022-05-16 14:33:49 +0200 |
commit | 30b0a0272b62775e9f23b9d4ba5cee7d9d678a5a (patch) | |
tree | d45b433f101dac534502bfa9e7cae60cb91ab6a2 /config | |
parent | 686d16a56bca1e798096bc54e782d4566a731409 (diff) | |
download | nextcloud-server-30b0a0272b62775e9f23b9d4ba5cee7d9d678a5a.tar.gz nextcloud-server-30b0a0272b62775e9f23b9d4ba5cee7d9d678a5a.zip |
only log diagnostic events if a treshhold is set
this prevents log spam and it's rare that you actually want to very short events logged anyway
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 54d3d46070a..f7b63b1491f 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -2128,6 +2128,8 @@ $CONFIG = [ /** * Limit diagnostics event logging to events longer than the configured threshold in ms + * + * when set to 0 no diagnostics events will be logged */ 'diagnostics.logging.threshold' => 0, |