blob: 1082f244867d1a0a27b1d5745ffb9ec56b607c7d [file] [log] [blame]
Chris Austenb29d2e82016-06-07 12:25:35 -05001#!/usr/bin/python
2import logging
3import warnings
4import httplib
5
6warnings.filterwarnings("ignore")
7
8# Hijack the HTTP lib logger message and Log only once
9requests_log = logging.getLogger("requests.packages.urllib3")
10requests_log.setLevel(logging.CRITICAL)
11requests_log.propagate = False
12
13class disable_warning_urllib():
14 def do_nothing():
15 return
16