1

ボトルには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

4

1 に答える 1