Skip to content

Commit c3d0f47

Browse files
author
Zvi Fried
committed
fix logger
1 parent a0fa01b commit c3d0f47

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/mcp_as_a_judge/messaging/mcp_sampling_provider.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,6 @@ def _normalize_mcp_messages(self, mcp_messages: list[Any]) -> list[Any]:
180180
continue
181181
except Exception as e:
182182
# Fall through to append original if normalization fails
183-
self.logger.debug_sync(
184-
f"Failed to normalize message, using original: {e}"
185-
)
183+
self.logger.debug(f"Failed to normalize message, using original: {e}")
186184
normalized.append(msg)
187185
return normalized

0 commit comments

Comments
 (0)