最佳答案
我已经在使用一个基本的日志配置,其中所有模块中的所有消息都存储在一个文件中。然而,我现在需要一个更复杂的解决方案:
我一直在阅读模块的文档,但它们现在对我来说非常复杂。伐木工,搬运工。
所以,简而言之:
How to log to two files in Python 3, ie:
import logging
# ...
logging.file1.info('Write this to file 1')
logging.file2.info('Write this to file 2')