diff options
| -rw-r--r-- | crates/whirl_server/src/hub.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/whirl_server/src/hub.rs b/crates/whirl_server/src/hub.rs index 2cb21d6..6dfdab0 100644 --- a/crates/whirl_server/src/hub.rs +++ b/crates/whirl_server/src/hub.rs @@ -109,7 +109,7 @@ impl Server for Hub { } Some(Command::Text) => { let text = Text::parse(msg.to_vec(), &[&username]); - debug!("received text from {}:{}", username, text.content); + debug!("received text from {}: {}", username, text.content); { state.lock().await.broadcast(&Text { |