Reduce log message verbosity

This commit is contained in:
Sam Harwell 2012-12-01 16:01:44 -06:00
parent a3e3cf21cb
commit f08b3ed9e5
1 changed files with 1 additions and 1 deletions

View File

@ -498,7 +498,7 @@ public class Antlr4Mojo extends AbstractMojo {
}
URI relativePath = project.getBasedir().toURI().relativize(outputFile.toURI());
getLog().info(" Writing file: " + relativePath);
getLog().debug(" Writing file: " + relativePath);
FileWriter fw = new FileWriter(outputFile);
return new BufferedWriter(fw);
}