我正在使用日志记录到旋转文件处理程序和 smtp 处理程序 - 取决于级别。在 Debian 和 Ubuntu 下 - 此日志使用两个处理程序。我在 RaspberryPi 上运行相同的代码。它记录到旋转处理程序,但我没有收到电子邮件。rPi 需要哪些额外配置?
日志记录.conf
[formatters]
keys=simpleFormatter
[loggers]
keys=root,simpleExample
[handlers]
keys=consoleHandler,rfileHandler
[formatter_simpleFormatter]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
datefmt= '%Y-%m-%d %H:%M:%S'
[logger_root]
level=INFO
handlers=consoleHandler,rfileHandler,email
[handler_consoleHandler]
class=StreamHandler
level=INFO
formatter=simpleFormatter
args=(sys.stdout,)
[handler_rfileHandler]
class=handlers.RotatingFileHandler
backupCount=5
maxBytes=500
formatter=simpleFormatter
level=INFO
args=('/blabla/logs/blabla.log',)
[logger_simpleExample]
level=INFO
handlers=consoleHandler
qualname=simpleExample
propagate=0
[handler_email]
class=handlers.SMTPHandler
level=WARNING
formatter=simpleFormatter
args=('target url','sendemail',['erich@*****.com'],'EGIM Outstation Logger', ('username','pw'))