aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMorris Jobke <morris.jobke@gmail.com>2013-08-28 18:36:32 +0200
committerMorris Jobke <morris.jobke@gmail.com>2013-08-28 18:36:32 +0200
commitd4952bd9df679306ff3e2a8efba1f37ed9d97044 (patch)
treeb3d663e7dc965b5f1e613e8c5a97389d3ebe7bab /lib
parent3fd2df4088d17547a3a31023a75cf538c95ade18 (diff)
downloadnextcloud-server-d4952bd9df679306ff3e2a8efba1f37ed9d97044.tar.gz
nextcloud-server-d4952bd9df679306ff3e2a8efba1f37ed9d97044.zip
fix typo
Diffstat (limited to 'lib')
-rw-r--r--lib/log/rotate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/log/rotate.php b/lib/log/rotate.php
index b620f0be15c..bf23ad588b3 100644
--- a/lib/log/rotate.php
+++ b/lib/log/rotate.php
@@ -17,7 +17,7 @@ namespace OC\Log;
class Rotate extends \OC\BackgroundJob\Job {
private $max_log_size;
public function run($logFile) {
- $this->max_log_size = OC_Config::getValue('log_rotate_size', false);
+ $this->max_log_size = \OC_Config::getValue('log_rotate_size', false);
if ($this->max_log_size) {
$filesize = @filesize($logFile);
if ($filesize >= $this->max_log_size) {