是否有可能以及在添加后通过log.debug()添加一些日志条目的最佳方法是什么?
如果在我的应用程序中没有发生任何值得注意的事情(我只在main()循环结束时才知道),我试图不记录任何内容。
答案 0 :(得分:1)
您可以使用以下代码:
logger = logging.getLogger()
logger.disabled = True
## content that WON'T appear in your log file ##
logger.disabled = False
## content that WILL appear in your log file ##
你应该看看here。 也许你会找到有用的东西。