Skip to content

Commit

Permalink
chore: fixing log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
paulushcgcj committed Oct 24, 2024
1 parent 2fbb79d commit 5d55667
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public List<OpenCategoryCodeEntity> findAllCategories(boolean includeExpired) {
: openCategoryCodeRepository.findAllByExpiryDateAfter(LocalDate.now());

log.info("Found {} open category codes ({}cluding expired)",
BooleanUtils.toString(includeExpired, "in", "ex"),
openCategoryCodes.size()
openCategoryCodes.size(),
BooleanUtils.toString(includeExpired, "in", "ex")
);
return openCategoryCodes;
}
Expand Down

0 comments on commit 5d55667

Please sign in to comment.