Bottle 有很好的access_log
输出,我想记录到文件中。
如何使用daemon
并将其放入某个文件中?
#!/usr/bin/env python
from bottle import route, run
import daemon
@route('/foo')
def foo():
return template('bar')
log = open('/dev/shm/access_log', 'a')
with daemon.DaemonContext(stdout=log):
run(host='0.0.0.0', port=8080)
它的背景和瓶子可以工作,但我什么也没得到/dev/shm/access_log
。