Browse Source

Remove log message

Konstantin Seiler 5 years ago
parent
commit
224ec0a04e
1 changed files with 0 additions and 2 deletions
  1. 0 2
      core/src/channel.rs

+ 0 - 2
core/src/channel.rs

@@ -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));