I have a Flask server running in standalone mode (using app.run()). But, I don\'t want any messages in the console, like
app.run()
127.0.0.1 - - [15/Feb/2
In case you are using WSGI server , please set the log to None
gevent_server = gevent.pywsgi.WSGIServer(("0.0.0.0", 8080), app,log = None)