最佳答案
我正在使用 Python 日志记录,由于某种原因,我的所有消息都出现了两次。
我有一个配置日志记录的模块:
# BUG: It's outputting logging messages twice - not sure why - it's not the propagate setting.
def configure_logging(self, logging_file):
self.logger = logging.getLogger("my_logger")
self.logger.setLevel(logging.DEBUG)
self.logger.propagate = 0
# Format for our loglines
formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
# Setup console logging
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
ch.setFormatter(formatter)
self.logger.addHandler(ch)
# Setup file logging as well
fh = logging.FileHandler(LOG_FILENAME)
fh.setLevel(logging.DEBUG)
fh.setFormatter(formatter)
self.logger.addHandler(fh)
稍后,我将调用此方法来配置日志记录:
if __name__ == '__main__':
tom = Boy()
tom.configure_logging(LOG_FILENAME)
tom.buy_ham()
然后在 Buy _ ham 模块中,我会调用:
self.logger.info('Successfully able to write to %s' % path)
出于某种原因,所有的信息都出现了两次。我注释掉了其中一个流处理程序,结果还是一样。有点奇怪,不知道为什么会这样... 哈哈。假设我漏掉了什么明显的东西。
干杯, 维克多