Skip to content

Commit

Permalink
fix(validation): Fix log tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
AAAlinaaa committed Oct 3, 2023
1 parent 41261ad commit dc8f309
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public Boolean execute(RepositoryContext context) {
String resourceURI = resource.getResourceURI(getBranchPath()).toString();
context.service(ValidationCleanupService.class).removeStaleIssues(context, resourceURI);
} catch (Exception e) {
LOGGER.trace("Failed to remove validation issues associated with deleted branch {}", getBranchPath(), e);
LOGGER.trace(String.format("Failed to remove validation issues associated with deleted branch %s", getBranchPath()), e);
}

} catch (NotFoundException e) {
Expand Down

0 comments on commit dc8f309

Please sign in to comment.