From 45c9b20edecda13a77df36fb022e977bc7ed999f Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Wed, 8 Mar 2023 21:13:50 +0100 Subject: [PATCH] add log --- kubi-server/src/auth.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kubi-server/src/auth.rs b/kubi-server/src/auth.rs index 13b3507..303f6fd 100644 --- a/kubi-server/src/auth.rs +++ b/kubi-server/src/auth.rs @@ -80,5 +80,7 @@ pub fn authenticate_players( client.borrow_mut().send( res, 0, SendMode::Reliable ); + + log::info!("{username} joined the game!") } }