Skip to content

Commit

Permalink
Merge pull request quarkusio#34433 from iocanel/cli-logging
Browse files Browse the repository at this point in the history
Use debug logging for catalog initialization message
  • Loading branch information
gsmet authored Jul 3, 2023
2 parents 47ac72f + 4a8a563 commit 4d23f57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ public boolean syncIfNeeded() {
.filter(Predicate.not(File::exists))
.map(File::toPath)
.map(p -> {
output.info("Project plugin catalog has not been initialized. Initializing!");
output.debug("Project plugin catalog has not been initialized. Initializing!");
state.getPluginCatalogService().writeCatalog(new PluginCatalog().withCatalogLocation(p));
return true;
}).orElse(false);
Expand Down

0 comments on commit 4d23f57

Please sign in to comment.