Skip to content

Commit 6365c6b

Browse files
committed
fix: improve logging for empty attributes in importer
1 parent 21d423c commit 6365c6b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

docs/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ category: Administration
2222
* feat: ensure compatibility with Jira 11.3.0
2323
* docs: improve documentation for assignee in syntax
2424
* fix: importer ignores attributes without values
25+
* fix: improve logging for empty attributes in importer
2526

2627
### [25.10.0] - 2025-10-03
2728

src/main/java/de/codescape/jira/plugins/multiplesubtasks/action/SubtaskTemplateImportAction.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,8 @@ String transformQuickSubtasksTemplate(String templateString) {
347347
default:
348348
log.error("Ignoring unknown attribute '" + key + "' with value: '" + value + "'");
349349
}
350+
} else {
351+
log.error("Ignoring attribute without value '" + key + "'");
350352
}
351353
}
352354
} else {

0 commit comments

Comments
 (0)