From 01bbd285307a0c6c0160cf4cf12882718f970bf0 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Mon, 6 Aug 2018 16:28:42 +0200 Subject: Do not log to error loglevel when converting the error Signed-off-by: Roeland Jago Douma --- lib/private/Files/Storage/DAV.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/Files/Storage/DAV.php b/lib/private/Files/Storage/DAV.php index b5537b65747..abb76660ca8 100644 --- a/lib/private/Files/Storage/DAV.php +++ b/lib/private/Files/Storage/DAV.php @@ -827,7 +827,7 @@ class DAV extends Common { * which might be temporary */ protected function convertException(Exception $e, $path = '') { - \OC::$server->getLogger()->logException($e, ['app' => 'files_external']); + \OC::$server->getLogger()->logException($e, ['app' => 'files_external', 'level' => ILogger::DEBUG]); if ($e instanceof ClientHttpException) { if ($e->getHttpStatus() === Http::STATUS_LOCKED) { throw new \OCP\Lock\LockedException($path); -- cgit v1.2.3