From 59f34ebc5f893d1c3cf567c9583893c5c4c05007 Mon Sep 17 00:00:00 2001 From: Ryan Nazareth Date: Mon, 17 Feb 2020 23:00:14 +0000 Subject: [PATCH] suppress plotly error logging (#1332) * raise logging level to critical for plot module * remove setlevel for plot logger --- python/fbprophet/plot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/fbprophet/plot.py b/python/fbprophet/plot.py index 2a573e4..5c67559 100644 --- a/python/fbprophet/plot.py +++ b/python/fbprophet/plot.py @@ -13,7 +13,8 @@ import pandas as pd from fbprophet.diagnostics import performance_metrics -logger = logging.getLogger('fbprophet') +logger = logging.getLogger('fbprophet.plot') + try: