Skip to content

Commit e865a8e

Browse files
authored
Merge pull request #243 from jgangemi/jae/fix-message
- fix for MissingFormatArgumentException
2 parents b3f2f1a + 8bb82d1 commit e865a8e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

github-pullrequest-plugin/src/main/java/com/github/kostyasha/github/integration/branch/events/impl/GitHubBranchCommitEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ private GitHubBranchCause check(GHBranch remoteBranch, Function<GitHubBranchComm
128128

129129
GitHubBranchCause cause = causes.get(0);
130130
LOG.info("Building branch [{}] skipped due to commit check: {}", name, cause.getReason());
131-
logger.printf("Building branch [%s] skipped due to commit check: %s", cause.getReason());
131+
logger.printf("Building branch [%s] skipped due to commit check: %s", name, cause.getReason());
132132

133133
return cause;
134134
}

0 commit comments

Comments
 (0)