aboutsummaryrefslogtreecommitdiff
path: root/runserver.py
diff options
context:
space:
mode:
Diffstat (limited to 'runserver.py')
-rwxr-xr-xrunserver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/runserver.py b/runserver.py
index ccd8bc60..cda0e06f 100755
--- a/runserver.py
+++ b/runserver.py
@@ -57,4 +57,4 @@ with application.app_context():
if __name__ == '__main__':
application.run(host=conf.WEBSERVER_HOST,
port=conf.WEBSERVER_PORT,
- debug=conf.LOG_LEVEL <= logging.DEBUG)
+ debug=True)
bgstack15