diff options
| author | Fuwn <[email protected]> | 2021-06-06 00:16:12 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-06-06 00:16:12 +0000 |
| commit | adc3fcff720a4365afdd9cc9a40b40ce49f737d4 (patch) | |
| tree | 5e433a8f29bae4c3eed712974b463883e4e649a8 | |
| parent | refactor(whirl_server): orphan function to command method (diff) | |
| download | whirl-adc3fcff720a4365afdd9cc9a40b40ce49f737d4.tar.xz whirl-adc3fcff720a4365afdd9cc9a40b40ce49f737d4.zip | |
fix(whirl_server::hub): space between debug log message
| -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 { |