summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSebastian Holmin <sebastian.holmin@mullvad.net>2024-11-14 11:44:49 +0100
committerSebastian Holmin <sebastian.holmin@mullvad.net>2024-11-14 17:31:40 +0100
commitfc8bd220d2fc896736c4c7e56e76108ee98a7b1c (patch)
tree4c013acc19912ebc341b63bb56f2e2edfdb7ccc6
parent3e603373b4f3d4a61aee003e996b589ea54a8f81 (diff)
downloadmullvadvpn-fc8bd220d2fc896736c4c7e56e76108ee98a7b1c.tar.xz
mullvadvpn-fc8bd220d2fc896736c4c7e56e76108ee98a7b1c.zip
Improve error message
-rw-r--r--mullvad-relay-selector/src/relay_selector/matcher.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-relay-selector/src/relay_selector/matcher.rs b/mullvad-relay-selector/src/relay_selector/matcher.rs
index 21376e9485..f9fa0d7a01 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![])
}),
}),