Skip to content

Commit

Permalink
Improve log message
Browse files Browse the repository at this point in the history
  • Loading branch information
seallard committed Feb 9, 2024
1 parent 514aa04 commit cd560d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cg/server/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def before_request():
try:
user_data = verify_google_token(jwt_token)
except ValueError as e:
LOG.error(f"Error occurred while decoding JWT token: {e}")
LOG.error(f"Error {e} occurred while decoding JWT token: {jwt_token}")
return abort(
make_response(jsonify(message="outdated login certificate"), HTTPStatus.UNAUTHORIZED)
)
Expand Down

0 comments on commit cd560d0

Please sign in to comment.