From d45692ee9651f5dc32bee15d518a9c0cf5c5c2b9 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Thu, 11 Feb 2021 16:03:11 +0100 Subject: Migrate custom loggers to PSR This will help phase out the deprecated ILogger interface. Signed-off-by: Christoph Wurst --- lib/private/Log/LogFactory.php | 8 ++++++++ lib/private/Log/PsrLoggerAdapter.php | 12 +++++++++--- 2 files changed, 17 insertions(+), 3 deletions(-) (limited to 'lib/private') diff --git a/lib/private/Log/LogFactory.php b/lib/private/Log/LogFactory.php index 7064fe324e6..6e6ded3758b 100644 --- a/lib/private/Log/LogFactory.php +++ b/lib/private/Log/LogFactory.php @@ -31,6 +31,7 @@ use OCP\ILogger; use OCP\IServerContainer; use OCP\Log\ILogFactory; use OCP\Log\IWriter; +use Psr\Log\LoggerInterface; class LogFactory implements ILogFactory { /** @var IServerContainer */ @@ -70,6 +71,13 @@ class LogFactory implements ILogFactory { return new Log($log, $this->systemConfig); } + public function getCustomPsrLogger(string $path): LoggerInterface { + $log = $this->buildLogFile($path); + return new PsrLoggerAdapter( + new Log($log, $this->systemConfig) + ); + } + protected function buildLogFile(string $logFile = ''):File { $defaultLogFile = $this->systemConfig->getValue('datadirectory', \OC::$SERVERROOT.'/data').'/nextcloud.log'; if ($logFile === '') { diff --git a/lib/private/Log/PsrLoggerAdapter.php b/lib/private/Log/PsrLoggerAdapter.php index c488441da41..8cd64bfe903 100644 --- a/lib/private/Log/PsrLoggerAdapter.php +++ b/lib/private/Log/PsrLoggerAdapter.php @@ -26,19 +26,21 @@ declare(strict_types=1); namespace OC\Log; +use OC\Log; use OCP\ILogger; +use OCP\Log\IDataLogger; use Psr\Log\InvalidArgumentException; use Psr\Log\LoggerInterface; use Throwable; use function array_key_exists; use function array_merge; -final class PsrLoggerAdapter implements LoggerInterface { +final class PsrLoggerAdapter implements LoggerInterface, IDataLogger { - /** @var ILogger */ + /** @var Log */ private $logger; - public function __construct(ILogger $logger) { + public function __construct(Log $logger) { $this->logger = $logger; } @@ -260,4 +262,8 @@ final class PsrLoggerAdapter implements LoggerInterface { $this->logger->log($level, $message, $context); } } + + public function logData(string $message, array $data, array $context = []): void { + $this->logger->logData($message, $data, $context); + } } -- cgit v1.2.3