Have urllib3 shut up
This commit is contained in:
parent
37bef7f64e
commit
a1cfecc155
1 changed files with 2 additions and 0 deletions
|
@ -5,6 +5,8 @@ import logging
|
|||
|
||||
def main(product_file):
|
||||
logging.basicConfig(level=logging.DEBUG)
|
||||
logging.getLogger("requests").setLevel(logging.WARNING)
|
||||
logging.getLogger("urllib3").setLevel(logging.WARNING)
|
||||
|
||||
with open(product_file, 'r') as fd:
|
||||
src = fd.read()
|
||||
|
|
Loading…
Add table
Reference in a new issue