diff --git a/selfdrive/athena/athenad.py b/selfdrive/athena/athenad.py index 0c5e03c79b..e618469aea 100755 --- a/selfdrive/athena/athenad.py +++ b/selfdrive/athena/athenad.py @@ -179,6 +179,7 @@ def jsonrpc_handler(end_event: threading.Event) -> None: elif "id" in data and ("result" in data or "error" in data): log_recv_queue.put_nowait(data) else: + cloudlog.error("athena.jsonrpc_handler.invalid_request", data=data) raise Exception("not a valid request or response") except queue.Empty: pass