python-daemon不记录stdout重定向

时间:2012-06-21 20:21:49

标签: python stdout daemon

我在我的代码中使用python-daemon,其中包含print语句。我想将它们发送到一个文件,所以我运行了以下内容:

python server.py >> log.out

然而,log.out没有任何内容。

谁能告诉我我需要做什么?

感谢。

3 个答案:

答案 0 :(得分:5)

DaemonContext对象允许在创建对象时重定向stdout / stderr / stdin。例如:

import os
import daemon


if __name__ == '__main__':
    here = os.path.dirname(os.path.abspath(__file__))
    out = open('checking_print.log', 'w+')

    with daemon.DaemonContext(working_directory=here, stdout=out):
        for i in range(1, 1000):
            print('Counting ... %s' % i)

您应该能够cat checking_print.log并查看print语句的输出。

DaemonContext对象的一个​​很好的参考是PEP 3143

答案 1 :(得分:0)

如果您的代码中有错误,则不会将其写入文件。见http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-3.html

尝试创建此文件:

print 'stdout'
raise Exception('stderr')

答案 2 :(得分:-1)

如果它已作为守护进程运行,您很可能需要强制重定向STDOUT,STDERR等。您可以在I/O Redirection here上阅读更多内容。

python server.py 2>log.out >&2