Skip to content

Commit

Permalink
change default logging level to INFO for check_for_anitya_version_upd…
Browse files Browse the repository at this point in the history
…ates

This polutes a log a lot.
This may be useful info when you debug something, but
it is overkill for normal situation.
INFO should be good enough for everyday.
  • Loading branch information
xsuchy authored and praiskup committed Jan 6, 2025
1 parent b6df555 commit 363e65c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
logging.basicConfig(
filename="{0}/check_for_anitya_version_updates.log".format(app.config.get("LOG_DIR")),
format='[%(asctime)s][%(levelname)6s]: %(message)s',
level=logging.DEBUG)
level=logging.INFO)
log = logging.getLogger(__name__)
log.addHandler(logging.StreamHandler(sys.stdout))

Expand Down

0 comments on commit 363e65c

Please sign in to comment.