From 85efe62fdf63ea058ef8f2db1de896baa2c32a31 Mon Sep 17 00:00:00 2001 From: Aleksei Voronov Date: Wed, 29 Nov 2023 10:39:48 +0100 Subject: [PATCH] Mention which profile we could not classify in the error message --- src/processes/profile_classifier.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/processes/profile_classifier.rs b/src/processes/profile_classifier.rs index 530c7ab..68db650 100644 --- a/src/processes/profile_classifier.rs +++ b/src/processes/profile_classifier.rs @@ -47,7 +47,7 @@ impl ProfileClassifier { for did in &dids { match self.fill_in_profile_details(did).await { Ok(()) => continue, - Err(e) => error!("Could not classify profile: {:?}", e), + Err(e) => error!("Could not classify profile with did {}: {:?}", did, e), } } }