Skip to content

Commit 871dc72

Browse files
committed
feat: better logging
1 parent 5067679 commit 871dc72

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/interceptor/auth_interceptor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def intercept_service(self, continuation, handler_call_details):
3131
algorithms=['HS256']
3232
)
3333
except Exception as e:
34-
log.warning(f"Invalid token | method={handler_call_details.method} error={e}")
34+
log.warning(f"Invalid token | method={handler_call_details.method} token={auth_token} error={e}")
3535
return self._abort_handler()
3636

3737
return continuation(handler_call_details)

0 commit comments

Comments
 (0)