Silence a lot of the useless logs for the checksum backfill

This commit is contained in:
Jake Moshenko 2015-11-10 19:49:23 -05:00
parent 83c98882bb
commit 88bbf34993

View file

@ -115,5 +115,7 @@ def backfill_content_checksums():
if __name__ == '__main__':
logging.basicConfig(level=logging.DEBUG)
# logging.getLogger('peewee').setLevel(logging.CRITICAL)
logging.getLogger('peewee').setLevel(logging.WARNING)
logging.getLogger('boto').setLevel(logging.WARNING)
logging.getLogger('data.database').setLevel(logging.WARNING)
backfill_content_checksums()