Skip to content

Commit

Permalink
tilt: fix klog printing to stderr (#1123)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicks authored Feb 5, 2019
1 parent ee57186 commit 0acdd78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/tilt/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func disableGlog() {
var tmpFlagSet = flag.NewFlagSet(os.Args[0], flag.ExitOnError)
klog.InitFlags(tmpFlagSet)
err := tmpFlagSet.Parse([]string{
"--stderrthreshold", "ERROR",
"--stderrthreshold", "FATAL",
})
if err != nil {
log.Fatal(err)
Expand Down

0 comments on commit 0acdd78

Please sign in to comment.