diff options
author | Robin Appelman <robin@icewind.nl> | 2017-01-02 16:16:15 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-01-06 16:10:07 +0100 |
commit | 54f96e5f58d0e5f7239e7274ac239fec807fa206 (patch) | |
tree | e2ff56ce315ab6bf56f857f8213a717b1d777458 /lib | |
parent | 4a2fbe9a5b6fd17781dd6de78b1247824618d717 (diff) | |
download | nextcloud-server-54f96e5f58d0e5f7239e7274ac239fec807fa206.tar.gz nextcloud-server-54f96e5f58d0e5f7239e7274ac239fec807fa206.zip |
Get the logfile location while running the logrotate cron job instead of when registering the job
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/base.php | 2 | ||||
-rw-r--r-- | lib/private/Log/Rotate.php | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/base.php b/lib/base.php index 4a9158eff64..dd0918e7c4c 100644 --- a/lib/base.php +++ b/lib/base.php @@ -881,7 +881,7 @@ class OC { if ($systemConfig->getValue('installed', false) && $systemConfig->getValue('log_rotate_size', false) && !self::checkUpgrade(false)) { //don't try to do this before we are properly setup //use custom logfile path if defined, otherwise use default of nextcloud.log in data directory - \OCP\BackgroundJob::registerJob('OC\Log\Rotate', $systemConfig->getValue('logfile', $systemConfig->getValue('datadirectory', OC::$SERVERROOT . '/data') . '/nextcloud.log')); + \OC::$server->getJobList()->add('OC\Log\Rotate'); } } diff --git a/lib/private/Log/Rotate.php b/lib/private/Log/Rotate.php index 6c87c167378..866068433ff 100644 --- a/lib/private/Log/Rotate.php +++ b/lib/private/Log/Rotate.php @@ -32,7 +32,9 @@ namespace OC\Log; */ class Rotate extends \OC\BackgroundJob\Job { private $max_log_size; - public function run($logFile) { + public function run($dummy) { + $systemConfig = \OC::$server->getSystemConfig(); + $logFile = $systemConfig->getValue('logfile', $systemConfig->getValue('datadirectory', \OC::$SERVERROOT . '/data') . '/nextcloud.log'); $this->max_log_size = \OC::$server->getConfig()->getSystemValue('log_rotate_size', false); if ($this->max_log_size) { $filesize = @filesize($logFile); |