elharo opened a new issue, #950:
URL: https://github.com/apache/maven-archetype/issues/950
### Affected version
HEAD
### Bug description
DefaultFilesetArchetypeGenerator logs a lot of unactionable debugging
information at INFO level. Demote this to debug. E.g.
```
if (LOGGER.isInfoEnabled()) {
LOGGER.info("----------------------------------------------------------------------------");
LOGGER.info("Using following parameters for creating project
from Archetype: "
+ request.getArchetypeArtifactId() + ":" +
request.getArchetypeVersion());
LOGGER.info("----------------------------------------------------------------------------");
LOGGER.info("Parameter: " + Constants.GROUP_ID + ", Value: " +
request.getGroupId());
LOGGER.info("Parameter: " + Constants.ARTIFACT_ID + ", Value: "
+ request.getArtifactId());
LOGGER.info("Parameter: " + Constants.VERSION + ", Value: " +
request.getVersion());
LOGGER.info("Parameter: " + Constants.PACKAGE + ", Value: " +
request.getPackage());
LOGGER.info("Parameter: " + Constants.PACKAGE_IN_PATH_FORMAT +
", Value: " + packageInPathFormat);
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]