From 373dcfb5eefdf7362ccc657e876522a423e1cae8 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Wed, 6 May 2026 11:20:35 -0500 Subject: [PATCH] Remove debug log --- crates/handlers/src/oauth2/authorization/consent.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/handlers/src/oauth2/authorization/consent.rs b/crates/handlers/src/oauth2/authorization/consent.rs index 78ee2498c..ab51bef1c 100644 --- a/crates/handlers/src/oauth2/authorization/consent.rs +++ b/crates/handlers/src/oauth2/authorization/consent.rs @@ -164,7 +164,6 @@ pub(crate) async fn get( .with_csrf(csrf_token.form_value()) .with_language(locale); - tracing::info!("asdf {:#?}", &ctx); let content = templates.render_policy_violation(&ctx)?; return Ok((cookie_jar, Html(content)).into_response());