summaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2015-04-09 12:36:10 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2015-05-18 10:57:52 +0200
commit7a8072e958f6956c131ca12e5b7387bcadef1820 (patch)
tree37b3d34a30e1a09b41deb7d122746e374895c824 /apps/files_external
parent73a3086945b41afa39debd89481c021934dedb67 (diff)
downloadnextcloud-server-7a8072e958f6956c131ca12e5b7387bcadef1820.tar.gz
nextcloud-server-7a8072e958f6956c131ca12e5b7387bcadef1820.zip
Move core apps from OC_Log::write to OCP\Util
Diffstat (limited to 'apps/files_external')
-rw-r--r--apps/files_external/lib/config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php
index 40e9a75790f..5dc6d06ae06 100644
--- a/apps/files_external/lib/config.php
+++ b/apps/files_external/lib/config.php
@@ -124,10 +124,10 @@ class OC_Mount_Config {
self::addStorageIdToConfig($data['user']);
$user = \OC::$server->getUserManager()->get($data['user']);
if (!$user) {
- \OC_Log::write(
+ \OCP\Util::writeLog(
'files_external',
'Cannot init external mount points for non-existant user "' . $data['user'] . '".',
- \OC_Log::WARN
+ \OCP\Util::WARN
);
return;
}