f5devcentral / f5go

The F5 Go Redirector
MIT License
19 stars 8 forks source link

Logs are only output to stdout #19

Open wwsean08 opened 8 years ago

wwsean08 commented 8 years ago

Currently the logs are only output to the stdout. They should be written to files (one for access logs, and one for the error logs). CherryPy does support this natively, http://docs.cherrypy.org/en/latest/basics.html#logging

Likely we'd want to use the native logging package so we could deal with log rotation and not fill the disk, but I need to do more research on if there are config options with cherrypy.config.update() that I can limit the file size.