Moved property printing to debug

This commit is contained in:
Marcin Grzejszczak
2018-10-31 09:12:41 +01:00
parent d8b26bb3cc
commit 600dcb0cb4
2 changed files with 1 additions and 2 deletions

View File

@@ -486,7 +486,6 @@ public class ReleaserProperties implements Serializable {
", releaseTrainWikiPagePrefix=" + this.releaseTrainWikiPagePrefix +
", cloneDestinationDir='" + this.cloneDestinationDir + '\'' +
", fetchVersionsFromGit=" + this.fetchVersionsFromGit +
", oauthToken='" + this.oauthToken + '\'' +
", numberOfCheckedMilestones=" + this.numberOfCheckedMilestones +
", updateSpringGuides=" + this.updateSpringGuides +
", updateSpringProject=" + this.updateSpringProject +

View File

@@ -61,7 +61,7 @@ public class SpringReleaser {
this.properties.getGit().setFetchVersionsFromGit(false);
this.properties.getMetaRelease().setEnabled(options.metaRelease);
ReleaserProperties original = this.properties.copy();
log.info("The following properties were found [{}]", original);
log.debug("The following properties were found [{}]", original);
metaReleaseProjects(options)
.forEach(project ->
processProjectForMetaRelease(original.copy(), options, project));