即使将cherryPy用作守护进程,也有办法登录到console(stdout)

时间:2019-05-14 09:29:46

标签: python cherrypy python-daemon

我有一个应用程序,需要在其中运行cherryPy作为守护程序。 因此,我添加了以下代码以使其守护进程。

<?php

class Products
{

    public function getProducts()
    {
        [
            'apple',
            'orange',
            'pitaya',
            'tomato',
            'banana',
        ];
    }

}

但是在守护进程登录后,stdout停止了。我从cherrypy的以下文档中知道,如果是守护进程,则将日志记录设置为false。 http://docs.cherrypy.org/en/latest/_modules/cherrypy/daemon.html

但是也可以登录stdout。我可以将其记录到另一个文件。但是我也想在stdout上打印它

0 个答案:

没有答案