本文整理汇总了Python中multiprocessing.util.SUBWARNING属性的典型用法代码示例。如果您正苦于以下问题:Python util.SUBWARNING属性的具体用法?Python util.SUBWARNING怎么用?Python util.SUBWARNING使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类multiprocessing.util
的用法示例。
在下文中一共展示了util.SUBWARNING属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_enable_logging
# 需要导入模块: from multiprocessing import util [as 别名]
# 或者: from multiprocessing.util import SUBWARNING [as 别名]
def test_enable_logging(self):
logger = multiprocessing.get_logger()
logger.setLevel(util.SUBWARNING)
self.assertTrue(logger is not None)
logger.debug('this will not be printed')
logger.info('nor will this')
logger.setLevel(LOG_LEVEL)