diff --git a/src/Logging/StdOutLogger.php b/src/Logging/StdOutLogger.php index 224c9388e..df5b90417 100644 --- a/src/Logging/StdOutLogger.php +++ b/src/Logging/StdOutLogger.php @@ -92,6 +92,11 @@ public function debug(string|Stringable $message, array $context = []): void $this->log(LogLevel::DEBUG, $message); } + /** + * @param string $level + * @param string|Stringable $message + * @param array $context + */ public function log($level, string|Stringable $message, array $context = []): void { if ($this->getLevelMap($level) < $this->level) {