blob: e9810c5d7844dc25f17512ae1e5baa7a6d028bc0 [file] [log] [blame]
#!/usr/bin/python
import logging
import warnings
import httplib
warnings.filterwarnings("ignore")
# Hijack the HTTP lib logger message and Log only once
requests_log = logging.getLogger("requests.packages.urllib3")
requests_log.setLevel(logging.CRITICAL)
requests_log.propagate = False
class disable_warning_urllib():
def do_nothing():
return