summaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-08-16 20:55:38 +0200
committerMorris Jobke <hey@morrisjobke.de>2017-08-17 09:45:11 +0200
commit1c38a83927ba318b1ef5115c0fe2fda0cdb5e454 (patch)
tree6d2ce15eb24ffb1debefe5236bb69ce01763a08c /lib/private
parentf0eb882c2e72e1c855ec3ddc0dfe87936babbd76 (diff)
downloadnextcloud-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 'lib/private')
-rw-r--r--lib/private/Settings/Admin/Server.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/private/Settings/Admin/Server.php b/lib/private/Settings/Admin/Server.php
index 994d927aff0..f9512928e5e 100644
--- a/lib/private/Settings/Admin/Server.php
+++ b/lib/private/Settings/Admin/Server.php
@@ -130,7 +130,6 @@ class Server implements ISettings {
// Background jobs
'backgroundjobs_mode' => $this->config->getAppValue('core', 'backgroundjobs_mode', 'ajax'),
- 'cron_log' => $this->config->getSystemValue('cron_log', true),
'lastcron' => $this->config->getAppValue('core', 'lastcron', false),
'cronErrors' => $this->config->getAppValue('core', 'cronErrors'),
'cli_based_cron_possible' => function_exists('posix_getpwuid'),