From c46a3677c08de22c759654ad08a379902753eaa1 Mon Sep 17 00:00:00 2001 From: MarkusJoe Date: Wed, 16 Feb 2022 16:59:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.py b/app.py index 3c11b4c..71b70b3 100644 --- a/app.py +++ b/app.py @@ -124,6 +124,8 @@ def index() -> Response: if __name__ == '__main__': + import sys + logger.info(sys.argv) logger.info('服务器已在 http://127.0.0.1:5000 运行') try: server = pywsgi.WSGIServer(('0.0.0.0', 5000), app)