login: add a debug log for available confirmation methods (#335)
This commit is contained in:
parent
7eb62cfa7b
commit
a50109ad63
1 changed files with 6 additions and 0 deletions
|
@ -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 {
|
for method in confirmation_methods {
|
||||||
match method.confirmation_type {
|
match method.confirmation_type {
|
||||||
EAuthSessionGuardType::k_EAuthSessionGuardType_DeviceConfirmation => {
|
EAuthSessionGuardType::k_EAuthSessionGuardType_DeviceConfirmation => {
|
||||||
|
|
Loading…
Reference in a new issue