Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
Merge pull request #36 from bradleyfalzon/stdout
Browse files Browse the repository at this point in the history
Output logs to stdout instead of stderr
  • Loading branch information
jorinvo authored Jun 24, 2017
2 parents 6b9a7a6 + ba8f20b commit 17372f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func main() {
}

errs := log.New(os.Stderr, "", 0)
logs := errs
logs := log.New(os.Stdout, "", 0)
if *silent {
logs = log.New(ioutil.Discard, "", 0)
}
Expand Down

0 comments on commit 17372f3

Please sign in to comment.