Skip to content

Commit

Permalink
fix!: change search endpoint log level to debug (#2483) (CP: main) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
vaadin-bot authored May 30, 2024
1 parent 58b6ee3 commit 81d9a93
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public OpenAPI execute() {

// Packages explicitly defined in pom.xml have priority
if (packages != null && !packages.isEmpty()) {
logger.info("Search for endpoints in packages {}", packages);
logger.debug("Search for endpoints in packages {}", packages);
classGraph.acceptPackages(packages.toArray(String[]::new));
classGraph.overrideClasspath(config.getClassPathElements());
}
Expand All @@ -323,7 +323,7 @@ public OpenAPI execute() {
var buildDirectories = config.getClassPathElements().stream()
.filter(e -> !e.endsWith(".jar"))
.collect(Collectors.toList());
logger.info("Search for endpoints in directories {}",
logger.debug("Search for endpoints in directories {}",
buildDirectories);
classGraph.overrideClasspath(buildDirectories);
}
Expand Down

0 comments on commit 81d9a93

Please sign in to comment.