Silence a lot of the useless logs for the checksum backfill
This commit is contained in:
parent
83c98882bb
commit
88bbf34993
1 changed files with 3 additions and 1 deletions
|
@ -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()
|
||||
|
|
Reference in a new issue