症状:使用python直接运行时可以正常记入日志,使用Nginx+uWSGI部署后无日志生成。
背景介绍:
定义了一个initlogger函数对logger做了一些初始化工作。
该函数在myapi.py(flask主文件)中的name中进行启动初始化。
if __name__ == '__main__':
initlogger()
app.run(host='0.0.0.0', port=11120, debug=True)
发现没有生成日志后,想起应该在uWSGI的启动文件中进行初始化。
PS:uwsgi --socket 127.0.0.1:11121 -w WSGI:app
即在WSGI.py文件中的name中进行启动初始化。
from myapi import app
import myapi
if __name__ == "__main__":
myapi.initlogger()
app.run()
依然没有日志生成,不知道怎么处理。本人为python新手,请大家指导。
PHPz2017-04-17 13:24:43
I figured it out later, but I still don’t understand the specific principle. I hope someone who knows more can add some information, thank you!
Put the logger initialization statement directly in the main file myapi.py instead of calling initialization in if name == "main".
from flask import Flask
import logging
from logging.handlers import TimedRotatingFileHandler
app = Flask(__name__)
formatter = logging.Formatter('%(name)-12s %(asctime)s level-%(levelname)-8s thread-%(thread)-8d %(message)s') # 每行日志的前缀设置
log = logging.getLogger('api')
fileTimeHandler = TimedRotatingFileHandler(cf.LOG_API_PATH + 'api_', "S", 1, 10)
fileTimeHandler.suffix = "%Y%m%d.log" #设置 切分后日志文件名的时间格式 默认 filename+"." + suffix 如果需要更改需要改logging 源码
fileTimeHandler.setFormatter(formatter)
logging.basicConfig(level = logging.INFO)
fileTimeHandler.setFormatter(formatter)
log.addHandler(fileTimeHandler)