From 8e3367bba15a9c3e2afeaf3e63933e26aef5f0dc Mon Sep 17 00:00:00 2001 From: Sebastian Holmin Date: Thu, 14 Nov 2024 11:44:49 +0100 Subject: [PATCH] Improve error message --- mullvad-relay-selector/src/relay_selector/matcher.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mullvad-relay-selector/src/relay_selector/matcher.rs b/mullvad-relay-selector/src/relay_selector/matcher.rs index 21376e9485d4..f9fa0d7a016b 100644 --- a/mullvad-relay-selector/src/relay_selector/matcher.rs +++ b/mullvad-relay-selector/src/relay_selector/matcher.rs @@ -246,7 +246,7 @@ impl<'a> ResolvedLocationConstraint<'a> { ResolvedLocationConstraint(custom_list.locations.iter().collect()) }) .unwrap_or_else(|| { - log::warn!("Resolved non-existent custom list"); + log::warn!("Resolved non-existent custom list with id {list_id:?}"); ResolvedLocationConstraint(vec![]) }), }),