From 458ead6a0eb4266574c55e162a75050be335df89 Mon Sep 17 00:00:00 2001 From: dankmeme01 <42031238+dankmeme01@users.noreply.github.com> Date: Wed, 7 Feb 2024 16:33:38 +0100 Subject: [PATCH] i am going insane --- server/central/src/web/routes/auth.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/central/src/web/routes/auth.rs b/server/central/src/web/routes/auth.rs index 8fae6264..befc687c 100644 --- a/server/central/src/web/routes/auth.rs +++ b/server/central/src/web/routes/auth.rs @@ -167,6 +167,8 @@ pub async fn challenge_start(context: &mut Context) -> roa::Result let verify = state.config.use_gd_api; drop(state); + trace!("sending existing challenge to {user_ip} with {rand_string}"); + context.write(format!( "{}:{}", if verify { level_id.to_string() } else { "none".to_string() }, @@ -215,7 +217,7 @@ pub async fn challenge_finish(context: &mut Context) -> roa::Result let ch_answer = &*context.must_query("answer")?; log::trace!( - "challenge finish from {} ({}) with answer: {}", + "challenge finish from {} ({}) with answer yay: {}", account_name, account_id, ch_answer