We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca0aa74 commit f7d9196Copy full SHA for f7d9196
inoreader/main.py
@@ -142,9 +142,9 @@ def redirect():
142
config.refresh_token = token['refresh_token']
143
config.expires_at = token['expires_at']
144
config.save()
145
- print("Login successfully, tokens are saved in config file %s" % config.config_file)
+ LOGGER.info("Login successfully, tokens are saved in config file %s", config.config_file)
146
else:
147
- print("Login failed, please check your environment or try again later.")
+ LOGGER.warning("Login failed, please check your environment or try again later.")
148
sys.exit(1)
149
150
0 commit comments