debug: add logging to trace parameter injection

This commit is contained in:
2025-11-02 20:29:35 -05:00
parent a16bac5d08
commit bf12e981fe
2 changed files with 5 additions and 0 deletions

View File

@@ -51,5 +51,8 @@ class ContextInjector:
if "today_date" not in request.args:
request.args["today_date"] = self.today_date
# Debug logging
print(f"[ContextInjector] Tool: {request.name}, Args after injection: {request.args}")
# Call the actual tool handler
return await handler(request)