Fixed logging

This commit is contained in:
Marcin Grzejszczak
2018-10-15 21:25:21 +02:00
parent 930f70f8e9
commit 93d896ff6a

View File

@@ -114,6 +114,16 @@ public class ReleaserProperties {
public void setProjectsToSkip(List<String> projectsToSkip) {
this.projectsToSkip = projectsToSkip;
}
@Override
public String toString() {
return "MetaRelease{" +
"enabled=" + this.enabled +
", releaseTrainProjectName='" + this.releaseTrainProjectName + '\'' +
", gitOrgUrl='" + this.gitOrgUrl + '\'' +
", projectsToSkip=" + this.projectsToSkip +
'}';
}
}
public static class Git {