summaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-04-20 14:35:37 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2018-04-22 20:41:49 +0200
commitdd34cb75404fb806da7e780bc5804fc958a75456 (patch)
tree9a8298a0e72f004ed3ff90984f2f19c509b4c007 /apps/files_external
parent8748e636f69c290926a297a24d21b248ad58de53 (diff)
downloadnextcloud-server-dd34cb75404fb806da7e780bc5804fc958a75456.tar.gz
nextcloud-server-dd34cb75404fb806da7e780bc5804fc958a75456.zip
Less deprecated calls to OCP\Util::writeLog
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files_external')
-rw-r--r--apps/files_external/lib/Service/LegacyStoragesService.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/files_external/lib/Service/LegacyStoragesService.php b/apps/files_external/lib/Service/LegacyStoragesService.php
index 65880514911..f1bd0b753ae 100644
--- a/apps/files_external/lib/Service/LegacyStoragesService.php
+++ b/apps/files_external/lib/Service/LegacyStoragesService.php
@@ -140,11 +140,7 @@ abstract class LegacyStoragesService {
$parts = explode('/', ltrim($rootMountPath, '/'), 3);
if (count($parts) < 3) {
// something went wrong, skip
- \OCP\Util::writeLog(
- 'files_external',
- 'Could not parse mount point "' . $rootMountPath . '"',
- \OCP\Util::ERROR
- );
+ \OC::$server->getLogger()->error('Could not parse mount point "' . $rootMountPath . '"', ['app' => 'files_external']);
continue;
}
$relativeMountPath = rtrim($parts[2], '/');