don't log whisper start ups

This commit is contained in:
obscuren 2015-03-10 22:43:07 +01:00
parent 7d77a2ffc3
commit eba4f389a6

View File

@ -38,11 +38,11 @@ func (self *peer) init() error {
func (self *peer) start() {
go self.update()
self.peer.Infoln("whisper started")
self.peer.Debugln("whisper started")
}
func (self *peer) stop() {
self.peer.Infoln("whisper stopped")
self.peer.Debugln("whisper stopped")
close(self.quit)
}