def verbose(msg, *args, **kwargs):
"""
Log a message with severity 'VERBOSE' on the root logger.
"""
if len(logging.root.handlers) == 0:
logging.basicConfig()
logging.root.verbose(*((msg, ) + args), **kwargs)
文章目录