How to logging with timed rotate file handler in T

2019-08-16 03:01发布

I've asked a question (how to manage nohup.out file in Tornado) about how to handle nohup.out file automatically when running a Tornado web service.

And I decided to use the logging module of Tornado to write my log files. I read about the documents of Tornado. The logging module it provides doesn't have the TimedRotatingFileHandler, I still cannot manage the logging files as dates.

So I want to know how to use TimedRotatingFileHandler in the logging module of Tonado?

1条回答
祖国的老花朵
2楼-- · 2019-08-16 03:50

I have rotating log files with my Tornado install.

I add this logging config line at the Tornado app startup:

logging.config.dictConfig(yaml.load(open('logging.yaml', 'r')))

and then include a logging.yaml that looks something like this gist:

查看更多
登录 后发表回答