swarm/network/kademlia: set kademlia log output to debug instead of warn (#3787)

This commit is contained in:
holisticode 2017-03-17 19:45:00 -05:00 committed by Felix Lange
parent 6d038e762b
commit d97dea51ec
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ func (self *Kademlia) DBCount() int {
// On is the entry point called when a new nodes is added
// unsafe in that node is not checked to be already active node (to be called once)
func (self *Kademlia) On(node Node, cb func(*NodeRecord, Node) error) (err error) {
log.Warn(fmt.Sprintf("%v", self))
log.Debug(fmt.Sprintf("%v", self))
defer self.lock.Unlock()
self.lock.Lock()