diff options
| author | Fuwn <[email protected]> | 2021-06-06 00:16:12 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-06-06 00:16:12 -0700 |
| commit | e9d15ed67ced3a097dbbda03245eb379a1098858 (patch) | |
| tree | 5337ea0932955bfc6a5b9fcae416b3772803a74d /crates/whirl_server/src | |
| parent | refactor(whirl_server): orphan function to command method (diff) | |
| download | whirl-e9d15ed67ced3a097dbbda03245eb379a1098858.tar.xz whirl-e9d15ed67ced3a097dbbda03245eb379a1098858.zip | |
fix(whirl_server::hub): space between debug log message
Diffstat (limited to 'crates/whirl_server/src')
| -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 { |