Merge pull request #423 from galal-hussein/change_threshold

Change the stderr threshold for cli
This commit is contained in:
Darren Shepherd 2019-05-02 10:45:21 -07:00 committed by GitHub
commit 9005fd5176
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ import (
func setupLogging(app *cli.Context) {
if !app.GlobalBool("debug") {
flag.Set("stderrthreshold", "3")
flag.Set("stderrthreshold", "WARNING")
flag.Set("alsologtostderr", "false")
flag.Set("logtostderr", "false")
}