Skip to content

Commit

Permalink
set logging options for boto3 instead of boto
Browse files Browse the repository at this point in the history
  • Loading branch information
zcqian committed Jul 14, 2021
1 parent df81ba9 commit 9992804
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bin/hub.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
logging.getLogger("elasticsearch").setLevel(logging.ERROR)
logging.getLogger("urllib3").setLevel(logging.ERROR)
logging.getLogger("requests").setLevel(logging.ERROR)
logging.getLogger("boto").setLevel(logging.ERROR)
logging.getLogger('botocore').setLevel(logging.ERROR)
logging.getLogger('boto3').setLevel(logging.ERROR)

import config, biothings
from biothings.utils.version import set_versions
Expand Down

0 comments on commit 9992804

Please sign in to comment.