diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-08-16 20:55:38 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-08-17 09:45:11 +0200 |
commit | 1c38a83927ba318b1ef5115c0fe2fda0cdb5e454 (patch) | |
tree | 6d2ce15eb24ffb1debefe5236bb69ce01763a08c /config | |
parent | f0eb882c2e72e1c855ec3ddc0dfe87936babbd76 (diff) | |
download | nextcloud-server-1c38a83927ba318b1ef5115c0fe2fda0cdb5e454.tar.gz nextcloud-server-1c38a83927ba318b1ef5115c0fe2fda0cdb5e454.zip |
Always log cron execution
There was a setting to disable the last execution of cron. There is no known
problem with this write access and it was also questioned when this feature
was build in https://github.com/owncloud/core/pull/7689#issuecomment-38264707
Recently there was also a bug report about a non-visible last cron execution
(#6088) - let's better remove this.
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 71d1aa3a02c..9f6ef668c5e 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -739,13 +739,6 @@ $CONFIG = array( 'log_query' => false, /** - * Log successful cron runs. - * - * Defaults to ``true`` - */ -'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 |