From 447d704de305e85b0fa810ee71418dd1c6938a7e Mon Sep 17 00:00:00 2001 From: loathingKernel <142770+loathingKernel@users.noreply.github.com> Date: Sat, 16 Dec 2023 13:57:32 +0200 Subject: [PATCH] Lgndr: Log what config location we are using --- rare/lgndr/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rare/lgndr/core.py b/rare/lgndr/core.py index ba6eaeb0..68ce36de 100644 --- a/rare/lgndr/core.py +++ b/rare/lgndr/core.py @@ -31,6 +31,7 @@ class LegendaryCore(LegendaryCoreReal): def __init__(self, *args, **kwargs): super(LegendaryCore, self).__init__(*args, **kwargs) self.log.info("Using Rare's LegendaryCore monkey") + self.log.info("Using config in %s", self.lgd.path.replace(os.getlogin(), "")) self.handler = LgndrLogHandler(logging.CRITICAL) self.log.addHandler(self.handler)