aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-09-19 00:37:06 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2024-09-19 00:37:06 +0200
commit5cce140701638aabac9ca692433b45517b741161 (patch)
tree90b493d92f6fee7f9527628a3a2c42ead7d92d4b /lib
parentf1dfd6ba71b476366694fdcdfb75f85e90535203 (diff)
downloadnextcloud-server-5cce140701638aabac9ca692433b45517b741161.tar.gz
nextcloud-server-5cce140701638aabac9ca692433b45517b741161.zip
chore: Remove deprecated `ILogger` logging functionschore/remove-ilogger
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/composer/composer/autoload_classmap.php1
-rw-r--r--lib/composer/composer/autoload_static.php1
-rw-r--r--lib/private/Log/LogFactory.php6
-rw-r--r--lib/private/Server.php13
-rw-r--r--lib/public/ILogger.php135
-rw-r--r--lib/public/IServerContainer.php9
6 files changed, 6 insertions, 159 deletions
diff --git a/lib/composer/composer/autoload_classmap.php b/lib/composer/composer/autoload_classmap.php
index 578395a45b4..82964a6e6c7 100644
--- a/lib/composer/composer/autoload_classmap.php
+++ b/lib/composer/composer/autoload_classmap.php
@@ -931,7 +931,6 @@ return array(
'OC\\AppFramework\\Http\\Output' => $baseDir . '/lib/private/AppFramework/Http/Output.php',
'OC\\AppFramework\\Http\\Request' => $baseDir . '/lib/private/AppFramework/Http/Request.php',
'OC\\AppFramework\\Http\\RequestId' => $baseDir . '/lib/private/AppFramework/Http/RequestId.php',
- 'OC\\AppFramework\\Logger' => $baseDir . '/lib/private/AppFramework/Logger.php',
'OC\\AppFramework\\Middleware\\AdditionalScriptsMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/AdditionalScriptsMiddleware.php',
'OC\\AppFramework\\Middleware\\CompressionMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/CompressionMiddleware.php',
'OC\\AppFramework\\Middleware\\MiddlewareDispatcher' => $baseDir . '/lib/private/AppFramework/Middleware/MiddlewareDispatcher.php',
diff --git a/lib/composer/composer/autoload_static.php b/lib/composer/composer/autoload_static.php
index 2e507ec7a5f..d83229c7426 100644
--- a/lib/composer/composer/autoload_static.php
+++ b/lib/composer/composer/autoload_static.php
@@ -964,7 +964,6 @@ class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2
'OC\\AppFramework\\Http\\Output' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Http/Output.php',
'OC\\AppFramework\\Http\\Request' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Http/Request.php',
'OC\\AppFramework\\Http\\RequestId' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Http/RequestId.php',
- 'OC\\AppFramework\\Logger' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Logger.php',
'OC\\AppFramework\\Middleware\\AdditionalScriptsMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/AdditionalScriptsMiddleware.php',
'OC\\AppFramework\\Middleware\\CompressionMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/CompressionMiddleware.php',
'OC\\AppFramework\\Middleware\\MiddlewareDispatcher' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/MiddlewareDispatcher.php',
diff --git a/lib/private/Log/LogFactory.php b/lib/private/Log/LogFactory.php
index a5a7290bd9c..612d98c9746 100644
--- a/lib/private/Log/LogFactory.php
+++ b/lib/private/Log/LogFactory.php
@@ -7,7 +7,6 @@ namespace OC\Log;
use OC\Log;
use OC\SystemConfig;
-use OCP\ILogger;
use OCP\IServerContainer;
use OCP\Log\ILogFactory;
use OCP\Log\IWriter;
@@ -33,11 +32,6 @@ class LogFactory implements ILogFactory {
};
}
- public function getCustomLogger(string $path): ILogger {
- $log = $this->buildLogFile($path);
- return new Log($log, $this->systemConfig);
- }
-
protected function createNewLogger(string $type, string $tag, string $path): IWriter {
return match (strtolower($type)) {
'errorlog' => new Errorlog($this->systemConfig, $tag),
diff --git a/lib/private/Server.php b/lib/private/Server.php
index f48cc0d0a48..943b4fc6997 100644
--- a/lib/private/Server.php
+++ b/lib/private/Server.php
@@ -177,7 +177,6 @@ use OCP\IEventSourceFactory;
use OCP\IGroupManager;
use OCP\IInitialStateService;
use OCP\IL10N;
-use OCP\ILogger;
use OCP\INavigationManager;
use OCP\IPhoneNumberUtil;
use OCP\IPreview;
@@ -680,6 +679,7 @@ class Server extends ServerContainer implements IServerContainer {
$this->registerAlias(\OCP\Support\Subscription\IRegistry::class, \OC\Support\Subscription\Registry::class);
$this->registerAlias(\OCP\Support\Subscription\IAssertion::class, \OC\Support\Subscription\Assertion::class);
+ /** Only used by the PsrLoggerAdapter should not be used by apps */
$this->registerService(\OC\Log::class, function (Server $c) {
$logType = $c->get(AllConfig::class)->getSystemValue('log_type', 'file');
$factory = new LogFactory($c, $this->get(SystemConfig::class));
@@ -688,7 +688,6 @@ class Server extends ServerContainer implements IServerContainer {
return new Log($logger, $this->get(SystemConfig::class), crashReporters: $registry);
});
- $this->registerAlias(ILogger::class, \OC\Log::class);
// PSR-3 logger
$this->registerAlias(LoggerInterface::class, PsrLoggerAdapter::class);
@@ -1657,16 +1656,6 @@ class Server extends ServerContainer implements IServerContainer {
}
/**
- * Returns a logger instance
- *
- * @return ILogger
- * @deprecated 20.0.0
- */
- public function getLogger() {
- return $this->get(ILogger::class);
- }
-
- /**
* @return ILogFactory
* @throws \OCP\AppFramework\QueryException
* @deprecated 20.0.0
diff --git a/lib/public/ILogger.php b/lib/public/ILogger.php
index 0716dae07d6..54f9ffeca9a 100644
--- a/lib/public/ILogger.php
+++ b/lib/public/ILogger.php
@@ -9,157 +9,32 @@ declare(strict_types=1);
namespace OCP;
/**
- * Interface ILogger
- * @since 7.0.0
+ * Nextcloud logging levels.
+ * For historical reasons the logging levels are provided as interface constants.
*
- * This logger interface follows the design guidelines of PSR-3
- * https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md#3-psrlogloggerinterface
- * @deprecated 20.0.0 use the PSR-3 logger \Psr\Log\LoggerInterface
+ * @since 7.0.0
+ * @since 20.0.0 deprecated logging methods in favor of \Psr\Log\LoggerInterface
+ * @since 31.0.0 removed deprecated logging methods - the interface is kept for Nextcloud log levels
*/
interface ILogger {
/**
* @since 14.0.0
- * @deprecated 20.0.0
*/
public const DEBUG = 0;
/**
* @since 14.0.0
- * @deprecated 20.0.0
*/
public const INFO = 1;
/**
* @since 14.0.0
- * @deprecated 20.0.0
*/
public const WARN = 2;
/**
* @since 14.0.0
- * @deprecated 20.0.0
*/
public const ERROR = 3;
/**
* @since 14.0.0
- * @deprecated 20.0.0
*/
public const FATAL = 4;
-
- /**
- * System is unusable.
- *
- * @param string $message
- * @param array $context
- * @return null
- * @since 7.0.0
- * @deprecated 20.0.0 use \Psr\Log\LoggerInterface::emergency
- */
- public function emergency(string $message, array $context = []);
-
- /**
- * Action must be taken immediately.
- *
- * @param string $message
- * @param array $context
- * @return null
- * @since 7.0.0
- * @deprecated 20.0.0 use \Psr\Log\LoggerInterface::alert
- */
- public function alert(string $message, array $context = []);
-
- /**
- * Critical conditions.
- *
- * @param string $message
- * @param array $context
- * @return null
- * @since 7.0.0
- * @deprecated 20.0.0 use \Psr\Log\LoggerInterface::critical
- */
- public function critical(string $message, array $context = []);
-
- /**
- * Runtime errors that do not require immediate action but should typically
- * be logged and monitored.
- *
- * @param string $message
- * @param array $context
- * @return null
- * @since 7.0.0
- * @deprecated 20.0.0 use \Psr\Log\LoggerInterface::error
- */
- public function error(string $message, array $context = []);
-
- /**
- * Exceptional occurrences that are not errors.
- *
- * @param string $message
- * @param array $context
- * @return null
- * @since 7.0.0
- * @deprecated 20.0.0 use \Psr\Log\LoggerInterface::warning
- */
- public function warning(string $message, array $context = []);
-
- /**
- * Normal but significant events.
- *
- * @param string $message
- * @param array $context
- * @return null
- * @since 7.0.0
- * @deprecated 20.0.0 use \Psr\Log\LoggerInterface::notice
- */
- public function notice(string $message, array $context = []);
-
- /**
- * Interesting events.
- *
- * @param string $message
- * @param array $context
- * @return null
- * @since 7.0.0
- * @deprecated 20.0.0 use \Psr\Log\LoggerInterface::info
- */
- public function info(string $message, array $context = []);
-
- /**
- * Detailed debug information.
- *
- * @param string $message
- * @param array $context
- * @return null
- * @since 7.0.0
- * @deprecated 20.0.0 use \Psr\Log\LoggerInterface::debug
- */
- public function debug(string $message, array $context = []);
-
- /**
- * Logs with an arbitrary level.
- *
- * @param int $level
- * @param string $message
- * @param array $context
- * @return mixed
- * @since 7.0.0
- * @deprecated 20.0.0 use \Psr\Log\LoggerInterface::log
- */
- public function log(int $level, string $message, array $context = []);
-
- /**
- * Logs an exception very detailed
- * An additional message can we written to the log by adding it to the
- * context.
- *
- * <code>
- * $logger->logException($ex, [
- * 'message' => 'Exception during background job execution'
- * ]);
- * </code>
- *
- * @param \Exception|\Throwable $exception
- * @param array $context
- * @return void
- * @since 8.2.0
- * @deprecated 20.0.0 use the `exception` entry in the context of any method in \Psr\Log\LoggerInterface
- */
- public function logException(\Throwable $exception, array $context = []);
}
diff --git a/lib/public/IServerContainer.php b/lib/public/IServerContainer.php
index 027dfcb77c4..82da8779a66 100644
--- a/lib/public/IServerContainer.php
+++ b/lib/public/IServerContainer.php
@@ -317,15 +317,6 @@ interface IServerContainer extends ContainerInterface, IContainer {
public function getJobList();
/**
- * Returns a logger instance
- *
- * @return \OCP\ILogger
- * @since 8.0.0
- * @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
- */
- public function getLogger();
-
- /**
* returns a log factory instance
*
* @return ILogFactory