Sfoglia il codice sorgente

beam/examples/beamsh: cosmetic fix in Fatalf

Docker-DCO-1.1-Signed-off-by: Solomon Hykes <solomon@docker.com> (github: shykes)
Solomon Hykes 11 anni fa
parent
commit
2f4b8b7e8d
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      pkg/beam/examples/beamsh/beamsh.go

+ 1 - 1
pkg/beam/examples/beamsh/beamsh.go

@@ -631,7 +631,7 @@ func Debugf(msg string, args ...interface{}) {
 }
 
 func Fatalf(msg string, args ...interface{})  {
-	Logf(msg, args)
+	Logf(msg, args...)
 	os.Exit(1)
 }