本文整理汇总了Python中coalib.output.printers.LogPrinter.LogPrinter.logger方法的典型用法代码示例。如果您正苦于以下问题:Python LogPrinter.logger方法的具体用法?Python LogPrinter.logger怎么用?Python LogPrinter.logger使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类coalib.output.printers.LogPrinter.LogPrinter
的用法示例。
在下文中一共展示了LogPrinter.logger方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_logging
# 需要导入模块: from coalib.output.printers.LogPrinter import LogPrinter [as 别名]
# 或者: from coalib.output.printers.LogPrinter.LogPrinter import logger [as 别名]
def test_logging(self):
uut = LogPrinter(timestamp_format="")
uut.logger = mock.MagicMock()
uut.log_message(self.log_message)
msg = Constants.COMPLEX_TEST_STRING
uut.logger.log.assert_called_with(logging.ERROR, msg)
uut = LogPrinter(log_level=LOG_LEVEL.DEBUG)
uut.logger = mock.MagicMock()
uut.log(LOG_LEVEL.ERROR, Constants.COMPLEX_TEST_STRING)
uut.logger.log.assert_called_with(logging.ERROR, msg)
uut.debug(Constants.COMPLEX_TEST_STRING, "d")
uut.logger.log.assert_called_with(logging.DEBUG, msg + " d")
uut.log_level = LOG_LEVEL.DEBUG
uut.log_exception("Something failed.", NotImplementedError(msg))
uut.logger.log.assert_any_call(logging.ERROR, "Something failed.")
uut.logger.log.assert_called_with(
logging.INFO,
"Exception was:\n{exception}: {msg}".format(
exception="NotImplementedError",
msg=msg))