Skip to content

Commit 10f91a7

Browse files
committed
unset log flags on startup
1 parent c9ed8bc commit 10f91a7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

main.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
package main
22

33
import (
4+
"log"
5+
46
"go.coder.com/cli"
57
"go.coder.com/cloud-agent/internal/cmd"
68
)
79

810
func main() {
11+
log.SetFlags(0)
912
cli.RunRoot(cmd.Make())
1013
}

0 commit comments

Comments
 (0)