aiohttp如何记录访问日志?

时间:2016-10-10 10:40:12

标签: python aiohttp

我正在尝试为aiohttp工作获取一个基本的记录器,但是根本没有记录日志消息。 Note_记录自定义消息按预期工作。

async def main_page(request: web.Request):
    return "hello world"

def setup_routes(app):
    app.router.add_get('/', main_page)


async def init(loop):
    # load config from yaml file in current dir
    conf = load_config(str(pathlib.Path('.') / 'async_config.yml'))

    # setup application and extensions
    app = web.Application(loop=loop)

    # setup views and routes
    setup_routes(app)

    host, port = conf['host'], conf['port']

    app['gmt_file'] = _get_gmt_file()

    return app, host, port

    LOG_FORMAT = '%a %l %u %t "%r" %s %b "%{Referrer}i" "%{User-Agent}i"'
    log_file = "log.text"
    handler = handlers.TimedRotatingFileHandler(log_file, when='midnight',
                                                backupCount=5)

    handler.setLevel(logging.DEBUG)
    formatter = logging.Formatter(LOG_FORMAT)
    handler.setFormatter(formatter)
    handler.name = "file_log"

    loop = asyncio.get_event_loop()
    app, host, port = loop.run_until_complete(init(loop))

    logging.getLogger("aiohttp").addHandler(handler)

    # todo host ziehen per aiohttp methods, so we are externally visible.
    web.run_app(app, host=host, port=port)

2 个答案:

答案 0 :(得分:1)

LOG_FORMAT应该是"%s"如果有的话。 '%a %l %u %t "%r" %s %b "%{Referrer}i" "%{User-Agent}i"'.make_handler(access_log_format=...)来电的有效参数,而不是logging.Formatter

作为第一步,我建议设置根记录器,然后再记录错误/访问日志。 也许访问日志值得拥有像access.log这样的私有文件。为实现此目的,您需要为aiohttp.access记录器设置处理程序,而不是为顶级aiohttp设置处理程序。

答案 1 :(得分:0)

只需导入日志记录并添加

logging.basicConfig(level=logging.DEBUG)

在run_app调用之前的某个位置。