From cafe1b0655d8f5a97a0e24f92b00cccc4c2042af Mon Sep 17 00:00:00 2001 From: sabaimran Date: Tue, 17 Dec 2024 19:48:22 -0800 Subject: [PATCH] Remove error log line for payload inclusion --- src/khoj/routers/auth.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/khoj/routers/auth.py b/src/khoj/routers/auth.py index 03cb174e..e5202f5b 100644 --- a/src/khoj/routers/auth.py +++ b/src/khoj/routers/auth.py @@ -237,7 +237,6 @@ async def auth(request: Request): if verified_data.status_code != 200: logger.error(f"Token request failed: {verified_data.text}") - logger.error(f"Payload sent: {payload}") try: error_json = verified_data.json() logger.error(f"Error response JSON for Google verification: {error_json}")