Skip to content

Commit

Permalink
Remove state and code info logging
Browse files Browse the repository at this point in the history
  • Loading branch information
afsalthaj committed Dec 9, 2024
1 parent acd97cc commit 656d842
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,7 @@ impl AuthCallBackBindingHandler for DefaultAuthCallBack {
state = Some(v.to_string())
}
}

info!("state is: {:?}", state.clone());
info!("code is: {:?}", code.clone().map(|x| x.secret().clone()));


let authorisation_code = code.ok_or(AuthorisationError::CodeNotFound)?;
let state = state.ok_or(AuthorisationError::StateNotFound)?;

Expand Down

0 comments on commit 656d842

Please sign in to comment.