From: Philipp Date: Sun, 5 Jan 2025 22:08:13 +0000 (+0100) Subject: Fix default log channel X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=77c9f54f5c3eeaaa55f06a4c436439f352297dcc;p=friendica.git Fix default log channel --- diff --git a/src/Console/AbstractConsole.php b/src/Console/AbstractConsole.php index 2195cab5e5..8ec0addeb3 100644 --- a/src/Console/AbstractConsole.php +++ b/src/Console/AbstractConsole.php @@ -22,5 +22,5 @@ abstract class AbstractConsole extends Console * * @var string */ - public const LOG_CHANNEL = LogChannel::class; + public const LOG_CHANNEL = LogChannel::CONSOLE; }