From 96a30c615015606eada9102ea33bd7466b45a537 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Tue, 16 Jul 2024 20:32:18 -0400 Subject: [PATCH] setup: debug print full authenticator status when verification fails (#396) --- src/commands/setup.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/setup.rs b/src/commands/setup.rs index f609c66..403bd75 100644 --- a/src/commands/setup.rs +++ b/src/commands/setup.rs @@ -193,6 +193,7 @@ impl SetupCommand { "authenticator state: {} -- did not actually finalize", status.state() ); + debug!("full status: {:#?}", status); manager.remove_account(&account_name); manager.save()?; bail!("Authenticator finalization was unsuccessful. You may have entered the wrong confirm code in the previous step. Try again.");