示例#1
0
 def test_log_level_default(self):
     "Call without args."
     setup_logging()
示例#2
0
 def test_log_level_debug(self):
     "Set log level `logging.DEBUG`."
     setup_logging(debug=True, )
示例#3
0
 def test_log_level_verbose(self):
     "Set log level `logging.INFO`."
     setup_logging(verbose=True, )
示例#4
0
def test_log_level_debug():
    setup_logging(debug=True, )
示例#5
0
def test_log_level_verbose():
    setup_logging(verbose=True, )
示例#6
0
def test_log_level_default():
    setup_logging()