diff --git a/google_auth_oauthlib/flow.py b/google_auth_oauthlib/flow.py index e564ca4..652c04c 100644 --- a/google_auth_oauthlib/flow.py +++ b/google_auth_oauthlib/flow.py @@ -69,6 +69,7 @@ _LOGGER = logging.getLogger(__name__) +_LOGGER.setLevel(logging.INFO) class Flow(object): @@ -447,6 +448,7 @@ def run_local_server( webbrowser.get(browser).open(auth_url, new=1, autoraise=True) if authorization_prompt_message: + _LOGGER.info(authorization_prompt_message.format(url=auth_url)) print(authorization_prompt_message.format(url=auth_url)) local_server.timeout = timeout_seconds