athena: raise log level for call method (#28334)

This commit is contained in:
Adeeb Shihadeh
2023-05-29 14:46:15 -07:00
committed by GitHub
parent 43b0e51906
commit 7e141f25f9
+1 -1
View File
@@ -171,7 +171,7 @@ def jsonrpc_handler(end_event: threading.Event) -> None:
try:
data = recv_queue.get(timeout=1)
if "method" in data:
cloudlog.debug(f"athena.jsonrpc_handler.call_method {data}")
cloudlog.event("athena.jsonrpc_handler.call_method", data=data)
response = JSONRPCResponseManager.handle(data, dispatcher)
send_queue.put_nowait(response.json)
elif "id" in data and ("result" in data or "error" in data):