Print success log line after job is done

We print messages to the log when the build fails, but we don't print
one when the build is successful.

I really want to celebrate our successes more often, so let's print a
success message when osbuild completes successfully. Since success
doesn't feel like success without an emoji, let's add one of those, too. 🎉

Signed-off-by: Major Hayden <major@redhat.com>
This commit is contained in:
Major Hayden 2020-06-15 15:29:42 -05:00 committed by Tom Gundersen
parent c3c78c2d0c
commit 067726e91d

View file

@ -244,6 +244,7 @@ func main() {
result = osbuildError.Result
}
} else {
log.Printf(" 🎉 Job completed successfully: %s", job.Id)
status = common.IBFinished
}