summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-08-11 14:08:36 +0200
committerGitHub <noreply@github.com>2020-08-11 14:08:36 +0200
commitf4765651db412ff262623105c1ebf8c09548bcff (patch)
tree0b127634ea00f32bf2166740de21fb26ac1bea4c
parent8fc877ff7dbe7e51a6da93f076f27216b57bc8cb (diff)
parent7badda361d684d64cac52bef12ada878f86d107c (diff)
downloadnextcloud-server-f4765651db412ff262623105c1ebf8c09548bcff.tar.gz
nextcloud-server-f4765651db412ff262623105c1ebf8c09548bcff.zip
Merge pull request #22190 from nextcloud/fix/noid/log-rotate-size
Fix default log_rotate_size in config.sample.php
-rw-r--r--config/config.sample.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 862c5ec1a1d..a74c5ba577d 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -865,8 +865,8 @@ $CONFIG = [
'log_query' => false,
/**
- * Enables log rotation and limits the total size of logfiles. The default is 0,
- * or no rotation. Specify a size in bytes, for example 104857600 (100 megabytes
+ * Enables log rotation and limits the total size of logfiles. Set it to 0 for
+ * no rotation. Specify a size in bytes, for example 104857600 (100 megabytes
* = 100 * 1024 * 1024 bytes). A new logfile is created with a new name when the
* old logfile reaches your limit. If a rotated log file is already present, it
* will be overwritten.