Skip to content

Commit 8334ffa

Browse files
committed
feat: better logging for tag conflict
1 parent 20830fb commit 8334ffa

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/experimaestro/core/objects/config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,10 +408,11 @@ def postprocess(self, stub, config: Config, values):
408408
existing_value, existing_source = self.tags_with_source[name]
409409
if existing_value != value:
410410
logger.warning(
411-
"Tag '%s' has conflicting values: "
411+
"Tag '%s' has conflicting values for %s: "
412412
"'%s' (set at %s) vs '%s' (set at %s). "
413413
"Using the latter value.",
414414
name,
415+
config.__xpmtype__,
415416
existing_value,
416417
existing_source,
417418
value,

0 commit comments

Comments
 (0)