Skip to content

Commit

Permalink
fix log (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Del Monte authored Jul 29, 2022
1 parent 02bd5cd commit bf3d14a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
12 changes: 0 additions & 12 deletions release.properties

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ private void triggerScm(@Nonnull Job<?, ?> job, List<URIish> remotes,
// @todo add comments to explain what is this check for
if (job.getParent() instanceof MultiBranchProject
&& mPJobShouldNotBeTriggered(job, bitbucketEvent, bitbucketAction)) {
logger.log(Level.FINEST, "Skipping job {}.", job.getDisplayName());
logger.log(Level.FINEST, "Skipping job {0}.", job.getDisplayName());
return;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ BitBucketPPRPayload getPayload(@Nonnull final String inputStream,
throws JsonSyntaxException, OperationNotSupportedException {
BitBucketPPRPayload pl = new Gson().fromJson(inputStream,
BitBucketPPRPayloadFactory.getInstance(bitbucketEvent).getClass());
logger.log(Level.FINEST, "the payload is: {}", pl);
logger.log(Level.FINEST, "the payload is: {0}", pl);
return pl;
}

Expand Down

0 comments on commit bf3d14a

Please sign in to comment.