Skip to content

Commit

Permalink
login: add a debug log for available confirmation methods (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyc3 authored Oct 17, 2023
1 parent 7eb62cf commit a50109a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/login.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,12 @@ fn do_login_impl<T: Transport + Clone>(
}
}

debug!(
"got {} confirmation methods: {:#?}",
confirmation_methods.len(),
confirmation_methods
);

for method in confirmation_methods {
match method.confirmation_type {
EAuthSessionGuardType::k_EAuthSessionGuardType_DeviceConfirmation => {
Expand Down

0 comments on commit a50109a

Please sign in to comment.