diff options
| author | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2024-11-14 11:44:49 +0100 |
|---|---|---|
| committer | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2024-11-14 17:31:40 +0100 |
| commit | fc8bd220d2fc896736c4c7e56e76108ee98a7b1c (patch) | |
| tree | 4c013acc19912ebc341b63bb56f2e2edfdb7ccc6 | |
| parent | 3e603373b4f3d4a61aee003e996b589ea54a8f81 (diff) | |
| download | mullvadvpn-fc8bd220d2fc896736c4c7e56e76108ee98a7b1c.tar.xz mullvadvpn-fc8bd220d2fc896736c4c7e56e76108ee98a7b1c.zip | |
Improve error message
| -rw-r--r-- | mullvad-relay-selector/src/relay_selector/matcher.rs | 2 |
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![]) }), }), |
