]> git.mxchange.org Git - friendica.git/commitdiff
Fix Introspection
authorPhilipp <admin@philipp.info>
Tue, 17 Jan 2023 19:11:48 +0000 (20:11 +0100)
committerPhilipp <admin@philipp.info>
Tue, 17 Jan 2023 19:11:48 +0000 (20:11 +0100)
src/Core/Logger/Type/AbstractLogger.php
src/Core/Logger/Type/StreamLogger.php
src/Core/Logger/Type/SyslogLogger.php

index bc4b00eceab31d1da42d57287a83796859e00fe0..77a61e9206467dac7d0d71846ae2ef2347935976 100644 (file)
@@ -21,8 +21,8 @@
 
 namespace Friendica\Core\Logger\Type;
 
+use Friendica\Core\Logger\Capabilities\IHaveCallIntrospections;
 use Friendica\Core\Logger\Exception\LoggerException;
-use Friendica\Core\Logger\Util\Introspection;
 use Friendica\Util\Strings;
 use Psr\Log\LoggerInterface;
 use Psr\Log\LogLevel;
@@ -46,7 +46,7 @@ abstract class AbstractLogger implements LoggerInterface
 
        /**
         * The Introspection for the current call
-        * @var Introspection
+        * @var IHaveCallIntrospections
         */
        protected $introspection;
 
@@ -69,11 +69,11 @@ abstract class AbstractLogger implements LoggerInterface
 
        /**
         * @param string        $channel       The output channel
-        * @param Introspection $introspection The introspection of the current call
+        * @param IHaveCallIntrospections $introspection The introspection of the current call
         *
         * @throws LoggerException
         */
-       public function __construct(string $channel, Introspection $introspection)
+       public function __construct(string $channel, IHaveCallIntrospections $introspection)
        {
                $this->channel       = $channel;
                $this->introspection = $introspection;
index 2568fb4a2e469d3311eb564db036419accb035f5..6e0f6579786182a793ed593abce64f1af4dd1ce0 100644 (file)
@@ -23,12 +23,12 @@ namespace Friendica\Core\Logger\Type;
 
 use Friendica\Core\Config\Capability\IManageConfigValues;
 use Friendica\Core\Hooks\Capabilities\IAmAStrategy;
+use Friendica\Core\Logger\Capabilities\IHaveCallIntrospections;
 use Friendica\Core\Logger\Exception\LoggerArgumentException;
 use Friendica\Core\Logger\Exception\LoggerException;
 use Friendica\Core\Logger\Exception\LogLevelException;
 use Friendica\Util\DateTimeFormat;
 use Friendica\Util\FileSystem;
-use Friendica\Core\Logger\Util\Introspection;
 use Psr\Log\LogLevel;
 
 /**
@@ -87,7 +87,7 @@ class StreamLogger extends AbstractLogger implements IAmAStrategy
         * @throws LoggerArgumentException
         * @throws LogLevelException
         */
-       public function __construct(string $channel, IManageConfigValues $config, Introspection $introspection, FileSystem $fileSystem, string $level = LogLevel::DEBUG)
+       public function __construct(string $channel, IManageConfigValues $config, IHaveCallIntrospections $introspection, FileSystem $fileSystem, string $level = LogLevel::DEBUG)
        {
                $this->fileSystem = $fileSystem;
 
index 2e4bc940773fbff38c5f207bbb0c91c21af1dcc7..3c9ab581a0f9dfb026ac0ed67b8cfa3e8fc5ccd2 100644 (file)
@@ -23,9 +23,9 @@ namespace Friendica\Core\Logger\Type;
 
 use Friendica\Core\Config\Capability\IManageConfigValues;
 use Friendica\Core\Hooks\Capabilities\IAmAStrategy;
+use Friendica\Core\Logger\Capabilities\IHaveCallIntrospections;
 use Friendica\Core\Logger\Exception\LoggerException;
 use Friendica\Core\Logger\Exception\LogLevelException;
-use Friendica\Core\Logger\Util\Introspection;
 use Psr\Log\LogLevel;
 
 /**
@@ -106,7 +106,7 @@ class SyslogLogger extends AbstractLogger implements IAmAStrategy
         * @throws LogLevelException
         * @throws LoggerException
         */
-       public function __construct(string $channel, IManageConfigValues $config, Introspection $introspection, string $level = LogLevel::NOTICE)
+       public function __construct(string $channel, IManageConfigValues $config, IHaveCallIntrospections $introspection, string $level = LogLevel::NOTICE)
        {
                parent::__construct($channel, $introspection);