Skip to content

Commit

Permalink
Merge pull request #53 from bluesliverx/master
Browse files Browse the repository at this point in the history
Fix log line output
  • Loading branch information
bluesliverx committed Sep 30, 2022
2 parents f0ca422 + cc3be8d commit 23ae6d0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ protected void onEvent(GHEvent event, String payload) {
return;
}

LOGGER.log(Level.FINE, "Received update on PR {1} for {2}", new Object[] { pullRequestId, repoUrl });
LOGGER.log(Level.FINE, "Received update on PR {0} for {1}", new Object[] { pullRequestId, repoUrl });
try (ACLContext aclContext = as(ACL.SYSTEM)) {
boolean jobFound = false;
Set<Job<?, ?>> alreadyTriggeredJobs = new HashSet<>();
Expand Down Expand Up @@ -176,4 +176,4 @@ protected void onEvent(GHEvent event, String payload) {
}
}
}
}
}

0 comments on commit 23ae6d0

Please sign in to comment.