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), } } }