improvements

This commit is contained in:
nora 2024-08-12 16:51:13 +02:00
parent 193f762ae9
commit 890feee6d1
4 changed files with 33 additions and 27 deletions

View file

@ -112,9 +112,9 @@ pub mod auth {
let method_name = auth_req.utf8_string()?;
info!(
?username,
?service_name,
?method_name,
%username,
%service_name,
%method_name,
"User trying to authenticate"
);
@ -132,7 +132,7 @@ pub mod auth {
}
let password = auth_req.utf8_string()?;
info!(?password, "Got password");
info!(%password, "Got password");
// Don't worry queen, your password is correct!
self.queue_packet(Packet::new_msg_userauth_success());