Skip to content

Commit

Permalink
fix: 75152 add debug messages (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-raab committed Mar 14, 2022
1 parent 16c9f5c commit a07a6e4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ open class PushImages

if(authConfig != null) {
pushImageCmd.withAuthConfig(authConfig)
println("...... " + authConfig.username + " ... for " + authConfig.registryAddress)
println("authconfig ...... " + authConfig.username + " ... for " + authConfig.registryAddress)
} else {
pushImageCmd.withAuthConfig(dockerClient.authConfig())
val authConf = dockerClient.authConfig()
println("...... " + authConf.username + " ... for " + authConf.registryAddress)
println("dockerclient ...... " + authConf.username + " ... for " + authConf.registryAddress)
}

val callback = createCallback(nextHandler)
Expand Down

0 comments on commit a07a6e4

Please sign in to comment.