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 f7b0c35 commit 063c90e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biothings/hub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def _config_for_app(config_mod=None):
logging.getLogger("urllib3").setLevel(logging.ERROR)
logging.getLogger("requests").setLevel(logging.ERROR)
logging.getLogger("botocore").setLevel(logging.ERROR)
logging.getLogger("boto").setLevel(logging.ERROR)
logging.getLogger("boto3").setLevel(logging.ERROR)
logging.getLogger("git").setLevel(logging.ERROR)

def get_loop(max_workers=None):
Expand Down

0 comments on commit 063c90e

Please sign in to comment.