Skip to content

Commit

Permalink
Log missing directories at info level
Browse files Browse the repository at this point in the history
This should fix spotify#160 "Logging is too chatty at WARN level"
  • Loading branch information
cgoeller authored Oct 28, 2024
1 parent 8b68c45 commit 11b59b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/spotify/fmt/AbstractFMT.java
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ private void handleMissingDirectory(String directoryDisplayName, File directory)
throw new MojoFailureException(message);
} else {
getLog()
.warn(directoryDisplayName + " directory '" + directory + "' does not exist, ignoring.");
.info(directoryDisplayName + " directory '" + directory + "' does not exist, ignoring.");
}
}

Expand Down

0 comments on commit 11b59b0

Please sign in to comment.