diff options
Diffstat (limited to 'mumd/src/network/tcp.rs')
| -rw-r--r-- | mumd/src/network/tcp.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mumd/src/network/tcp.rs b/mumd/src/network/tcp.rs index 2a0d01e..b1743c8 100644 --- a/mumd/src/network/tcp.rs +++ b/mumd/src/network/tcp.rs @@ -269,7 +269,9 @@ async fn listen( .unwrap() .parse_channel_remove(*msg); } - _ => {} + packet => { + debug!("Received unhandled ControlPacket {:#?}", packet); + } } }, || async { |
