Skip to content

Commit

Permalink
Disable boto related noisy logs
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Jan 24, 2025
1 parent a273285 commit 409bec8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions oonipipeline/src/oonipipeline/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import logging
from .cli.commands import cli

logging.getLogger("boto").setLevel(logging.CRITICAL)
logging.getLogger("boto3").setLevel(logging.CRITICAL)
logging.getLogger("botocore").setLevel(logging.CRITICAL)

if __name__ == "__main__":
cli()

0 comments on commit 409bec8

Please sign in to comment.