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 2cfa9cd commit 0704334Copy full SHA for 0704334
nerve/tools/mcp/client.py
@@ -52,7 +52,7 @@ async def _logging_callback(
52
params: mcp_types.LoggingMessageNotificationParams,
53
) -> None:
54
line = str(params.data)
55
-
+
56
# In quiet mode, suppress verbose output but still show errors/warnings
57
if self._is_quiet:
58
# Parse the actual log level from nerve-formatted log lines
@@ -65,7 +65,7 @@ async def _logging_callback(
65
else:
66
# For unstructured output (like tool results), suppress in quiet mode
67
return
68
69
# Determine appropriate log level based on content
70
if "] ERROR " in line:
71
logger.error(f"<{self.name}> {line}")
0 commit comments