diff --git a/wavesrv/pkg/scbus/scbus.go b/wavesrv/pkg/scbus/scbus.go index 016c81ce1..7ce8d2545 100644 --- a/wavesrv/pkg/scbus/scbus.go +++ b/wavesrv/pkg/scbus/scbus.go @@ -40,7 +40,6 @@ func (bus *Bus[I]) RegisterChannel(key string, channelEntry Channel[I]) chan I { defer bus.Lock.Unlock() uch, found := bus.Channels[key] ch := make(chan I, ChSize) - log.Printf("registering channel key=%s ch=%v\n", key, ch) channelEntry.SetChannel(ch) if found { close(uch.GetChannel())