From f9b7432f4bae8038db7f5f926839f4f333ac7998 Mon Sep 17 00:00:00 2001 From: CPD Date: Wed, 12 Mar 2025 16:44:38 +0100 Subject: [PATCH] Revert "Add logger" This reverts commit 068ea6022fdd143e30ddc40b9de37ec383a3ae7d. --- cpdctrl/cpdctrl_interactive.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/cpdctrl/cpdctrl_interactive.py b/cpdctrl/cpdctrl_interactive.py index 9377f3f..ad7563d 100644 --- a/cpdctrl/cpdctrl_interactive.py +++ b/cpdctrl/cpdctrl_interactive.py @@ -285,7 +285,6 @@ Enter 'help()' for a list of commands""") args = vars(parser.parse_args()) from os import environ - # Load config file if path.isfile(cfilename): config_path = cfilename elif 'XDG_CONFIG_HOME' in environ.keys(): @@ -299,18 +298,6 @@ Enter 'help()' for a list of commands""") config_file = ConfigFile(config_path, init_values=settings) load_settings() - # setup logging - log_path = path.expanduser(config_file.get_or("path_log", "~/.cache/cpdctrl-interactive.log")) - makedirs(path.dirname(log_path), exist_ok=True) - logging.basicConfig( - level=logging.WARN, - format="%(asctime)s [%(levelname)s] [%(name)s] %(message)s", - handlers=[ - logging.FileHandler(log_path), - logging.StreamHandler() - ] - ) - if not path.isdir(settings["datadir"]): makedirs(settings["datadir"])