We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0112ac3 commit 953aca7Copy full SHA for 953aca7
src/Capability/Logger/McpLogger.php
@@ -33,7 +33,13 @@ public function __construct(
33
) {
34
}
35
36
- public function log($level, string|\Stringable $message, array $context = []): void
+ /**
37
+ * Logs with an arbitrary level.
38
+ *
39
+ * @param string|\Stringable $message
40
+ * @param array<string, mixed> $context
41
+ */
42
+ public function log($level, $message, array $context = []): void
43
{
44
// Always log to fallback logger if provided (for local debugging)
45
$this->fallbackLogger?->log($level, $message, $context);
0 commit comments