channelnotifier: remove ChannelNotifier instance from log string

This commit is contained in:
Federico Bond 2019-06-12 09:38:35 -03:00
parent 0a9141763e
commit b724b96ad1

@ -59,7 +59,7 @@ func New(chanDB *channeldb.DB) *ChannelNotifier {
func (c *ChannelNotifier) Start() error { func (c *ChannelNotifier) Start() error {
var err error var err error
c.started.Do(func() { c.started.Do(func() {
log.Tracef("ChannelNotifier %v starting", c) log.Trace("ChannelNotifier starting")
err = c.ntfnServer.Start() err = c.ntfnServer.Start()
}) })
return err return err