From: skjnldsv Date: Fri, 8 Nov 2024 09:42:07 +0000 (+0100) Subject: chore: use `$this->logger` and prevent Server::get X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=954b6c68a062897986f16d0faa2e4f7f832149b7;p=nextcloud-server.git chore: use `$this->logger` and prevent Server::get Signed-off-by: skjnldsv --- diff --git a/lib/private/Files/Storage/DAV.php b/lib/private/Files/Storage/DAV.php index 3d3937b44b7..10670d6331a 100644 --- a/lib/private/Files/Storage/DAV.php +++ b/lib/private/Files/Storage/DAV.php @@ -346,7 +346,7 @@ class DAV extends Common { if ($response->getStatusCode() === Http::STATUS_LOCKED) { throw new \OCP\Lock\LockedException($path); } else { - Server::get(LoggerInterface::class)->error('Guzzle get returned status code ' . $response->getStatusCode(), ['app' => 'webdav client']); + $this->logger->error('Guzzle get returned status code ' . $response->getStatusCode(), ['app' => 'webdav client']); } } @@ -773,7 +773,7 @@ class DAV extends Common { * @throws ForbiddenException if the action is not allowed */ protected function convertException(Exception $e, string $path = ''): void { - Server::get(LoggerInterface::class)->debug($e->getMessage(), ['app' => 'files_external', 'exception' => $e]); + $this->logger->debug($e->getMessage(), ['app' => 'files_external', 'exception' => $e]); if ($e instanceof ClientHttpException) { if ($e->getHttpStatus() === Http::STATUS_LOCKED) { throw new \OCP\Lock\LockedException($path);