Skip to content

Commit

Permalink
misc: Updated logs to be a bit more descriptive.
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Tegnér <[email protected]>
  • Loading branch information
Johannestegner committed Mar 8, 2023
1 parent f05cb43 commit 95680d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func main() {
if err != nil {
log.Error("Failed to assign " + origin + " with the tag " + target)
} else {
log.Info(origin + " ==> " + target)
log.Info("Tag " + target + " created from " + origin)
}
}
},
Expand All @@ -48,7 +48,7 @@ func main() {
if err != nil {
log.Error("Failed to push image " + target)
} else {
log.Info("Pushed image " + target + " successfully!")
log.Info("Pushed image with tag " + target + " successfully")
}
}
},
Expand Down

0 comments on commit 95680d7

Please sign in to comment.