Skip to content

Commit

Permalink
Tone down to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed May 2, 2024
1 parent ffc58c2 commit 5c5b072
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ private Model readEffectiveModel(
.map(Object::toString)
.toList();
if (!Objects.equals(oldRepos, newRepos)) {
logger.info("Merging repositories from " + model.getId() + "\n"
logger.debug("Merging repositories from " + model.getId() + "\n"
+ newRepos.stream().map(s -> " " + s).collect(Collectors.joining("\n")));
}
}
Expand Down Expand Up @@ -410,7 +410,7 @@ private Model readEffectiveModel(
.map(Object::toString)
.toList();
if (!Objects.equals(oldRepos, newRepos)) {
logger.info("Replacing repositories from " + resultModel.getId() + "\n"
logger.debug("Replacing repositories from " + resultModel.getId() + "\n"
+ newRepos.stream().map(s -> " " + s).collect(Collectors.joining("\n")));
}
}
Expand Down

0 comments on commit 5c5b072

Please sign in to comment.