From 8334ffa4e66736cf96bcb996300ab399e9287b2f Mon Sep 17 00:00:00 2001 From: Victor Morand Date: Thu, 19 Mar 2026 14:57:25 +0100 Subject: [PATCH] feat: better logging for tag conflict --- src/experimaestro/core/objects/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/experimaestro/core/objects/config.py b/src/experimaestro/core/objects/config.py index 41b26999..95c3a8d7 100644 --- a/src/experimaestro/core/objects/config.py +++ b/src/experimaestro/core/objects/config.py @@ -408,10 +408,11 @@ def postprocess(self, stub, config: Config, values): existing_value, existing_source = self.tags_with_source[name] if existing_value != value: logger.warning( - "Tag '%s' has conflicting values: " + "Tag '%s' has conflicting values for %s: " "'%s' (set at %s) vs '%s' (set at %s). " "Using the latter value.", name, + config.__xpmtype__, existing_value, existing_source, value,