Flask app “Restarting with stat”

后端 未结 4 940
醉梦人生
醉梦人生 2020-12-01 04:02

I\'ve built a few Flask apps, but on my latest project I noticed something a little strange in development mode. The second line of the usual message in the terminal which

4条回答
  •  离开以前
    2020-12-01 04:32

    If you run with app.run(debug=True), it will run the reloader as part of debug mode. If you don't want to use debug mode, pass debug=False or don't pass it at all.

提交回复
热议问题