Commit 2e55f891 authored by OptimismBot's avatar OptimismBot Committed by GitHub

Merge pull request #5376 from ethereum-optimism/jg/logging

op-node: Log when reading channels
parents f6ef656b b8e95227
......@@ -124,6 +124,7 @@ func (cb *ChannelBank) Read() (data []byte, err error) {
if !ch.IsReady() {
return nil, io.EOF
}
cb.log.Info("Reading channel", "channel", first, "frames", len(ch.inputs))
delete(cb.channels, first)
cb.channelQueue = cb.channelQueue[1:]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment