Skip to content

Commit

Permalink
handlers: rest remove unnecessary error log
Browse files Browse the repository at this point in the history
  • Loading branch information
drjova authored and oguzdemirbasci committed Jan 7, 2021
1 parent 1153f5b commit d9194ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion invenio_oauthclient/handlers/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def authorized_signup_handler(resp, remote, *args, **kwargs):

if user is None:
# Auto sign-up if user not found
current_app.logger.error(account_info['user'])
current_app.logger.info(account_info['user'])
user = rest_oauth_register(account_info['user'])
# if registration fails ...
if user is None:
Expand Down

0 comments on commit d9194ff

Please sign in to comment.