使用gunicorn启动我的应用程序时,我可以使用以下代码在--access-logfile
中找到警告日志:
gunicorn_logger = logging.getLogger('gunicorn.error')
app.logger.handlers = gunicorn_logger.handlers
app.logger.setLevel(gunicorn_logger.level)
但是,我可以t find my prints. Only written with the
app.logger`写入。那么,如何使用打印?