Skip to content

Commit

Permalink
Fixing printing of secrets to command line
Browse files Browse the repository at this point in the history
Fixed printing of secrets to command line, as we provided the wrong value to the log.
  • Loading branch information
aepfli authored May 6, 2021
1 parent 00166d3 commit c10551d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class RepositoryActionHandler {
if (!token) {
handleInapplicableTokenCase(repositoryConfiguration, tokenList)
} else {
logger.info("${logPrefix(repositoryConfiguration)} is using '${token.key}' '${token.value}'")
logger.info("${logPrefix(repositoryConfiguration)} is using '${token.key}' '${token.name}'")
}
Action<MavenArtifactRepository> artifactRepo = generateArtifactRepositoryAction(repositoryConfiguration, token)
return artifactRepo
Expand Down

0 comments on commit c10551d

Please sign in to comment.