Skip to content

Commit 223755b

Browse files
committed
change default logging level to INFO for check_for_anitya_version_updates
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.
1 parent e587359 commit 223755b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/coprs_frontend/run/check_for_anitya_version_updates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
logging.basicConfig(
2424
filename="{0}/check_for_anitya_version_updates.log".format(app.config.get("LOG_DIR")),
2525
format='[%(asctime)s][%(levelname)6s]: %(message)s',
26-
level=logging.DEBUG)
26+
level=logging.INFO)
2727
log = logging.getLogger(__name__)
2828
log.addHandler(logging.StreamHandler(sys.stdout))
2929

0 commit comments

Comments
 (0)