Merge pull request #841 from dklyle/fix-log-reference

Update logs pkg reference
pull/842/head
dlorenc 2016-11-22 16:28:03 -08:00 committed by GitHub
commit 06f380aa7a
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ const fileScheme = "file"
//This init function is used to set the logtostderr variable to false so that INFO level log info does not clutter the CLI
//INFO lvl logging is displayed due to the kubernetes api calling flag.Set("logtostderr", "true") in its init()
//see: https://github.com/kubernetes/kubernetes/blob/master/pkg/util/logs.go#L32-34
//see: https://github.com/kubernetes/kubernetes/blob/master/pkg/util/logs/logs.go#L32-34
func init() {
flag.Set("logtostderr", "false")
}