Skip to content

Commit

Permalink
Quiet means that we send the info to the debug level instead
Browse files Browse the repository at this point in the history
  • Loading branch information
Björn Ekryd committed Jul 1, 2023
1 parent 61fe697 commit 176bb86
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion maven-plugin/src/main/java/sortpom/logger/MavenLogger.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ public void warn(String content) {

@Override
public void info(String content) {
if (!quiet) {
if (quiet) {
pluginLogger.debug(content);
} else {
pluginLogger.info(content);
}
}
Expand Down

0 comments on commit 176bb86

Please sign in to comment.