From b1eff33417d27d9525162730d86a73eecf17ff7b Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Fri, 8 Dec 2023 17:08:12 -0800 Subject: [PATCH] Troubleshoot log init --- chatbot_core/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/chatbot_core/__init__.py b/chatbot_core/__init__.py index f6ec93f..31771f3 100644 --- a/chatbot_core/__init__.py +++ b/chatbot_core/__init__.py @@ -21,6 +21,9 @@ environ.setdefault("OVOS_CONFIG_BASE_FOLDER", "neon") environ.setdefault("OVOS_CONFIG_FILENAME", "chatbots.yaml") +from neon_utils.log_utils import init_log +init_log(log_name="chatbots") + from neon_utils.decorators import module_property