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
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.