我正在尝试使用Python 3.7中的logging
模块设置非常基本的日志记录配置。
我想同时登录“ logfile.log”和控制台。
这是我的代码,失败并显示错误:ValueError: 'stream' and 'filename' should not be specified together
logging.basicConfig(
stream = sys.stdout,
filename = 'logfile.log',
level = logging.INFO
)
logging.info("log message")
谢谢!