From 82f6ba06819193c72f9c45305abc91dc652f735e Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Fri, 15 Jan 2021 14:32:01 +0100 Subject: [PATCH] Log when no conf file found --- xbotlib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/xbotlib.py b/xbotlib.py index 8e66f32..83713a8 100644 --- a/xbotlib.py +++ b/xbotlib.py @@ -139,6 +139,7 @@ class Bot(ClientXMPP): config_file_path = Path(self.CONFIG_FILE).absolute() if not exists(config_file_path) and stdout.isatty(): + self.log.info(f"Did not find {config_file_path}") self.generate_config_interactively() if exists(config_file_path):