From 579bef8cd65a2bef9ab12c44b6617510202f4cfd Mon Sep 17 00:00:00 2001 From: The Dax Date: Fri, 20 Jun 2025 09:48:37 -0400 Subject: [PATCH] Adjust logging slightly --- src/bin/kawari-world.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/kawari-world.rs b/src/bin/kawari-world.rs index b405c67..5394d9e 100644 --- a/src/bin/kawari-world.rs +++ b/src/bin/kawari-world.rs @@ -552,7 +552,8 @@ async fn client_loop( unwrap(); Ok(()) } else { - tracing::info!("User with account_id {} tried to invoke GM command they have no permissions for!!!", connection.player_data.account_id); + tracing::info!("User with account_id {} tried to invoke GM command {} they have no permissions for!", + connection.player_data.account_id, command_name); let func: Function = lua.globals().get("onCommandPermissionError").unwrap(); func.call::<()>(connection_data).unwrap();