Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable10] Improve logging text in config.sample.php #32049

Merged
merged 1 commit into from
Jul 18, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions config/config.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,11 @@

/**
* Logging
*
* These parameters configure the logging options.
* For additional information or advanced configuration, please see the logging
* section in the documentation.
*
*/

/**
Expand Down Expand Up @@ -706,11 +711,13 @@
'cron_log' => true,

/**
* 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
* = 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.
* Enables log rotation and limits the total size of the logfiles.
* The default is 0 or false which disables log 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 the defined limit.
* If a rotated log file is already present, it will be overwritten.
* If enabled, only the active log file and one rotated file are stored.
*/
'log_rotate_size' => false,

Expand Down