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 authored and rminnich committed Oct 2, 2024
1 parent 2964999 commit 1e03968
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 1e03968

Please sign in to comment.