Skip to content
Snippets Groups Projects
Commit 40d64208 authored by Kasalehlia's avatar Kasalehlia
Browse files

greatly reduce log messages

parent 25134500
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,10 @@ from queue import Queue
from flask import Flask, render_template
from flask_socketio import SocketIO
import logging
log = logging.getLogger('werkzeug')
log.setLevel(logging.ERROR)
app = Flask(__name__, static_url_path='', static_folder='public')
app.config['SECRET_KEY'] = 'Een3ooYiimePood5aeCe8ae0Eihohsh1'
socketio = SocketIO(app, async_mode='threading')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment