Skip to content

Commit

Permalink
Use debug-level messages for generating anonymous users (#1254)
Browse files Browse the repository at this point in the history
  • Loading branch information
hbcarlos authored Apr 3, 2023
1 parent 6ad8006 commit 3d4e162
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_server/auth/identity.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def generate_anonymous_user(self, handler: JupyterHandler) -> User:
name = display_name = f"Anonymous {moon}"
initials = f"A{moon[0]}"
color = None
handler.log.info(f"Generating new user for token-authenticated request: {user_id}")
handler.log.debug(f"Generating new user for token-authenticated request: {user_id}")
return User(user_id, name, display_name, initials, None, color)

def should_check_origin(self, handler: JupyterHandler) -> bool:
Expand Down

0 comments on commit 3d4e162

Please sign in to comment.