Merge pull request #22191 from nextcloud/backport/22190/stable18

[stable18] Fix default log_rotate_size in config.sample.php
This commit is contained in:
Roeland Jago Douma 2020-08-11 15:17:01 +02:00 committed by GitHub
commit c52a302bc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -824,8 +824,8 @@ $CONFIG = array(
'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.