summaryrefslogtreecommitdiffstats
path: root/lib/private/Log.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-01-09 10:55:40 +0100
committerJoas Schilling <coding@schilljs.com>2017-01-09 10:55:40 +0100
commite7ff1ba548ad4f8661f8309157336d376d6fb937 (patch)
tree0f96132657dd7f5b0c0c65ed505026eaa78502c8 /lib/private/Log.php
parent7573fa3148cf4ef99075e5373e40b776c0939f17 (diff)
downloadnextcloud-server-e7ff1ba548ad4f8661f8309157336d376d6fb937.tar.gz
nextcloud-server-e7ff1ba548ad4f8661f8309157336d376d6fb937.zip
Add tests
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Log.php')
-rw-r--r--lib/private/Log.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Log.php b/lib/private/Log.php
index af0ca140cb9..5ba19698612 100644
--- a/lib/private/Log.php
+++ b/lib/private/Log.php
@@ -339,7 +339,7 @@ class Log implements ILogger {
$logClass = 'OC\\Log\\' . ucfirst($logType);
if (!class_exists($logClass)) {
- $logClass = 'OC\\Log\\File';
+ $logClass = \OC\Log\File::class;
}
return $logClass;