From 17438fa22b824118c2650e0430679c3477fdc1c8 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 25 Feb 2018 20:45:12 -0500 Subject: [PATCH] cli logging bugfix --- cli/notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/notify.py b/cli/notify.py index 81edcafe..b384faf8 100755 --- a/cli/notify.py +++ b/cli/notify.py @@ -75,7 +75,7 @@ def _main(title, body, urls, notification_type, theme, verbose): logger.setLevel(logging.INFO) else: - logger.setLevel(logging.NONE) + logger.setLevel(logging.ERROR) formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s') ch.setFormatter(formatter)