From cc5ef29d2e9a220cb1f555e3b690117963ff89e9 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 10 Jan 2021 14:58:23 +0100 Subject: [PATCH] Drop logging for now --- xbotlib.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/xbotlib.py b/xbotlib.py index 3115279..cb6faee 100644 --- a/xbotlib.py +++ b/xbotlib.py @@ -42,10 +42,7 @@ class Bot(ClientXMPP): config_file_path = Path(self.CONFIG_FILE).absolute() if not exists(config_file_path): - print(f"No {self.CONFIG_FILE} found, generating you one now...") self.generate_config() - else: - print(f"Discovered {config_file_path}...") self.config = ConfigParser() self.config.read(config_file_path)