Gunicorn runs the django project. How can I see the output from the command line?

run this command root@VM-0-14-debian:~/webvue-sharp gunicorn-w 1 webvue.wsgi:application-b 127.0.0.1 webvue.wsgi:application 9090-t 30
as follows:

[2018-04-02 17:56:58 +0000] [9374] [INFO] Starting gunicorn 19.7.1
[2018-04-02 17:56:58 +0000] [9374] [INFO] Listening at: http://127.0.0.1:9090 (9374)
[2018-04-02 17:56:58 +0000] [9374] [INFO] Using worker: sync
[2018-04-02 17:56:58 +0000] [9378] [INFO] Booting worker with pid: 9378

if you start the service with the frame command, you can see all kinds of connection information when you visit the page, but when I visit the page with gunicorn, everything is normal, but the access is not displayed, can gunicorn see the access information just like the frame command?

Environment python 2.7 django 1.8.3 gunicorn 19.7.1

Feb.28,2021
Menu