Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2022-05-13 16:06:47 +0300
committerRobin Appelman <robin@icewind.nl>2022-05-13 16:15:26 +0300
commiteda997f2bd6e969753ca90c400b790427b2bf684 (patch)
treeef0818523ff1fd659b14e791c1ec46d61c546351 /config
parent52bb29bde117f13d8df106bdc6862efe12314448 (diff)
only log diagnostic events if a treshhold is setevent-logger-log-minimum
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.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 5c34563f63d..bf6643458fa 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -1791,7 +1791,7 @@ $CONFIG = [
/**
* Enforce the user theme. This will disable the user theming settings
- * This must be a valid ITheme ID.
+ * This must be a valid ITheme ID.
* E.g. light, dark, highcontrast, dark-highcontrast...
*/
'enforce_theme' => '',
@@ -2146,6 +2146,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,