Skip to content

Commit

Permalink
Merge pull request #19971 from smarterclayton/debug_logging
Browse files Browse the repository at this point in the history
etcd should not log at debug unless at v(4)
  • Loading branch information
openshift-merge-robot authored Jun 12, 2018
2 parents a4d5aa2 + 569eed7 commit 5e0bfba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/server/etcd/etcdserver/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const defaultName = "openshift.local"
// RunEtcd starts an etcd server and runs it forever
func RunEtcd(etcdServerConfig *configapi.EtcdConfig) {
cfg := embed.NewConfig()
cfg.Debug = true
cfg.Debug = bool(glog.V(4))
cfg.Name = defaultName
cfg.Dir = etcdServerConfig.StorageDir

Expand Down

0 comments on commit 5e0bfba

Please sign in to comment.