From ab29b552ebea6882d1e7b89251a2387c662f1f11 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Tue, 1 Aug 2023 10:17:16 +0200 Subject: [PATCH] Tweak example code --- examples/provision.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/provision.rs b/examples/provision.rs index a413d69..2660e23 100644 --- a/examples/provision.rs +++ b/examples/provision.rs @@ -72,7 +72,7 @@ async fn main() -> anyhow::Result<()> { let Identifier::Dns(identifier) = &authz.identifier; - println!("Please set the following DNS record then press any key:"); + println!("Please set the following DNS record then press the Return key:"); println!( "_acme-challenge.{} IN TXT {}", identifier, @@ -106,7 +106,7 @@ async fn main() -> anyhow::Result<()> { match tries < 5 { true => info!(?state, tries, "order is not ready, waiting {delay:?}"), false => { - error!(?state, tries, "order is not ready"); + error!(tries, "order is not ready: {state:#?}"); return Err(anyhow::anyhow!("order is not ready")); } }