Skip to content

Commit

Permalink
Add debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
edrzmr committed Oct 1, 2024
1 parent 3374975 commit 6fafbb1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/scala/sbtdocker/DockerTag.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ object DockerTag {
log.info(s"Tagging image $id with name: $name")

val command = dockerPath :: "tag" :: id.id :: name.toString :: Nil
log.debug(s"Running command: '${command.mkString(" ")}'")

val processOutput = Process(command).lines(processLogger)
processOutput.foreach { line =>
Expand Down

0 comments on commit 6fafbb1

Please sign in to comment.