diff options
| author | Eskil Q <eskilq@kth.se> | 2021-01-07 00:02:30 +0100 |
|---|---|---|
| committer | Eskil Q <eskilq@kth.se> | 2021-01-07 00:02:30 +0100 |
| commit | fe6e5eb67405cd929e65d8ff01ba52dbac9565ad (patch) | |
| tree | 5e4018c78002c91e1fdd294665344b64a2664e6b /mumd/src/command.rs | |
| parent | ce5bce8681220b2460cacc931937e2772545fe52 (diff) | |
| download | mum-fe6e5eb67405cd929e65d8ff01ba52dbac9565ad.tar.gz | |
remove unnecessary debug print
Diffstat (limited to 'mumd/src/command.rs')
| -rw-r--r-- | mumd/src/command.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mumd/src/command.rs b/mumd/src/command.rs index b099ae1..653d1fa 100644 --- a/mumd/src/command.rs +++ b/mumd/src/command.rs @@ -26,11 +26,9 @@ pub async fn handle( debug!("Begin listening for commands"); while let Some((command, response_sender)) = command_receiver.recv().await { debug!("Received command {:?}", command); - debug!("locking state"); let mut state = state.lock().await; let event = state.handle_command(command, &mut packet_sender, &mut connection_info_sender); drop(state); - debug!("unlocking state"); match event { ExecutionContext::TcpEvent(event, generator) => { let (tx, rx) = oneshot::channel(); |
