Adding some logging

This commit is contained in:
Ryan Baxter
2024-06-03 19:19:51 -04:00
parent c6642a6a76
commit cfafc20a63

View File

@@ -43,6 +43,9 @@ public class ReleaseBundleCreator {
public ReleaseBundleCreator(ReleaserProperties properties) {
this.properties = properties;
log.info("Creating Artifactory client with URL [{}]", properties.getBundles().getRepoUrl());
log.info("Creating Artifactory client with username [{}]", properties.getBundles().getRepoUsername());
log.info("Creating Artifactory client with password [{}]", properties.getBundles().getRepoPassword());
this.artifactory = ArtifactoryClientBuilder.create().setUrl(properties.getBundles().getRepoUrl())
.setUsername(properties.getBundles().getRepoUsername())
.setPassword(properties.getBundles().getRepoPassword()).build();