From 8f540917cb5b4e39545d4c81b4d2998db53b4c7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Fredrik=20Ki=C3=A6r?= Date: Wed, 5 Aug 2020 09:25:05 +0200 Subject: [PATCH] Remove redundant Dash log info --- webviz_config/templates/webviz_template.py.jinja2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webviz_config/templates/webviz_template.py.jinja2 b/webviz_config/templates/webviz_template.py.jinja2 index 943495a7..1a607fe0 100644 --- a/webviz_config/templates/webviz_template.py.jinja2 +++ b/webviz_config/templates/webviz_template.py.jinja2 @@ -5,7 +5,6 @@ # This file was generated by {{ author }} on {{ current_date }}. import logging -import logging.config import threading import datetime import os.path as path @@ -40,6 +39,7 @@ theme = webviz_config.WebvizConfigTheme("{{ theme_name }}") theme.from_json((Path(__file__).resolve().parent / "theme_settings.json").read_text()) app = dash.Dash(__name__, external_stylesheets=theme.external_stylesheets) +app.logger.setLevel(logging.WARNING) server = app.server app.title = "{{ title }}"