log to dev null

This commit is contained in:
Asim Aslam 2018-12-04 17:33:11 +00:00
parent 72d8dc89fb
commit 1ed2b589a2

View File

@ -3,6 +3,7 @@ package gossip
import (
"encoding/json"
"io/ioutil"
"os"
"strings"
"sync"
@ -326,6 +327,9 @@ func (g *gossipRegistry) run() error {
// set the name
c.Name = strings.Join([]string{"micro", hostname, uuid.New().String()}, "-")
// log to dev null
c.LogOutput = ioutil.Discard
// TODO: set advertise addr to advertise behind nat
// create the memberlist
@ -373,7 +377,7 @@ func NewRegistry(opts ...registry.Option) registry.Registry {
log.Fatal(err)
}
log.Logf("Registry gossiping at %s", g.memberlist.LocalNode().Address())
log.Logf("Registry Listening on %s", g.memberlist.LocalNode().Address())
// return gossip registry
return g
}