Mention which profile we could not classify in the error message

This commit is contained in:
Aleksei Voronov 2023-11-29 10:39:48 +01:00
parent 2bb88d69b3
commit 85efe62fdf
1 changed files with 1 additions and 1 deletions

View File

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