Skip to content

Commit b5bac7d

Browse files
committed
cmd/buildlet/stage0: move some logging around for the Windows untar mode
Change-Id: I7f5048b6f8e1806cb7801bf903a943eb503b2fc4 Reviewed-on: https://go-review.googlesource.com/51191 Reviewed-by: Jeff Johnson <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent c9d0d25 commit b5bac7d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cmd/buildlet/stage0/stage0.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,15 @@ func main() {
5454
configureSerialLogOutput()
5555
}
5656
log.SetPrefix("stage0: ")
57-
log.Printf("bootstrap binary running.")
5857
flag.Parse()
5958

6059
if *untarFile != "" {
60+
log.Printf("running in untar mode, untarring %q to %q", *untarFile, *untarDestDir)
6161
untarMode()
62+
log.Printf("done untarring; exiting")
6263
return
6364
}
65+
log.Printf("bootstrap binary running")
6466

6567
switch osArch {
6668
case "linux/arm":

0 commit comments

Comments
 (0)