Skip to content
This repository has been archived by the owner on May 2, 2023. It is now read-only.

Commit

Permalink
Removed debug statements
Browse files Browse the repository at this point in the history
Signed-off-by: Brandon Lum <[email protected]>
  • Loading branch information
lumjjb committed Oct 18, 2018
1 parent 3e2f429 commit bbcf9f9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion runnc-cli/runnc.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ func main() {
app.Before = func(context *cli.Context) error {
if context.GlobalBool("debug") {
logrus.SetLevel(logrus.DebugLevel)
fmt.Fprintln(os.Stderr, "Setting debug level")
}
if path := context.GlobalString("log"); path != "" {
f, err := os.OpenFile(path, os.O_CREATE|os.O_WRONLY|os.O_APPEND|os.O_SYNC, 0666)
Expand Down
3 changes: 0 additions & 3 deletions runnc-cli/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ instance of a container.`,
}
os.Stdout.Write(data)

// DEBUG
os.Stderr.Write(data)

return nil
},
}
Expand Down

0 comments on commit bbcf9f9

Please sign in to comment.