How to log requests to stdout in Tornado web server?

前端 未结 3 716
南方客
南方客 2021-02-19 00:44

I\'m starting to develop a simple Tornado application, and I\'d like to see request log in stdout while I develop. Currently I only see 404 warning messages.

Is there a

3条回答
  •  故里飘歌
    2021-02-19 00:56

    Add this to your app:

    import tornado.options
    tornado.options.parse_command_line()
    

    The parse_command_line function sets up logging. You can then pass --logging=loglevel (e.g. debug)

提交回复
热议问题