1
1
mirror of https://github.com/walles/moar.git synced 2024-10-05 16:07:54 +03:00

This is benign

So log it as debug rather than warning.

Ref: https://github.com/walles/moar/issues/164#issuecomment-1831255422
This commit is contained in:
Johan Walles 2023-11-29 14:03:55 +01:00
parent 0e27391c53
commit ddd7aec274

View File

@ -250,7 +250,7 @@ func (screen *UnixScreen) mainLoop() {
default:
// If this happens, consider increasing the channel size in
// NewScreen()
log.Warnf("Events buffer (size %d) full, events are being dropped", cap(screen.events))
log.Debugf("Events buffer (size %d) full, events are being dropped", cap(screen.events))
}
}
}