Remove log message

This commit is contained in:
Konstantin Seiler 2019-11-06 14:38:28 +11:00
parent c50fc9885a
commit 224ec0a04e

View file

@ -59,8 +59,6 @@ impl ChannelManager {
let id: u16 = BigEndian::read_u16(data.split_to(2).as_ref());
trace!("Received data for channel {}: {} bytes.", id, data.len());
self.lock(|inner| {
if let Entry::Occupied(entry) = inner.channels.entry(id) {
let _ = entry.get().unbounded_send((cmd, data));