我想將我當前的項目從python 2.7轉換爲3.5。首要任務之一是配置日誌記錄。我使用靈活的配置文件,日期是文件名的一部分。 以下是設置了文件處理程序,在2.7Python 3.4日誌記錄配置
[handler_fileHandler]
class=FileHandler
level=DEBUG
formatter=simpleFormatter
# Only one log per day will be created. All messages will be appended to it.
args=("D:\\Logs\\PyLogs\\" + time.strftime("%Y%m%d%H%M%S")+'.log', 'a')
工作正常在3.5出現以下錯誤代碼:
configparser.InterpolationSyntaxError: '%' must be followed by '%' or '(', found: '%Y%m%d%H%M%S")+\'.log\', \'a\')'
有沒有人經歷這件事?有沒有更好的方式來格式化配置文件中的日期?
替代我很驚訝這個工作都在2.7。爲什麼不使用['TimedRotatingFileHandler'](https://docs.python.org/3/library/logging.handlers.html#timedrotatingfilehandler)? 'class = TimedRotatingFileHandler',用'when ='D'。 –
我沒有使用TimeRotatingFileHandler,因爲它沒有做我想要的,但謝謝你的建議。 –