Skip to content

Commit

Permalink
cpuns: set debug default to false
Browse files Browse the repository at this point in the history
Signed-off-by: the man <[email protected]>
  • Loading branch information
rminnichcodeu committed Sep 27, 2024
1 parent a8c61b3 commit 7e5a8e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmds/cpuns/main_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func unshare(env string, args ...string) {
// more anyway ...
func main() {
flag.CommandLine = flag.NewFlagSet("cpuns", flag.ExitOnError)
debug := flag.Bool("d", true, "enable debug prints")
debug := flag.Bool("d", false, "enable debug prints")
env := flag.String("env", "", "newline-separated array of environment variables")
flag.Parse()
if *debug {
Expand Down

0 comments on commit 7e5a8e4

Please sign in to comment.