summaryrefslogtreecommitdiffstats
path: root/futures
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-02-23 02:16:12 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-02-23 02:16:12 +0100
commit6759a5c56fc53286d77698ac9a86812b6d7b03ff (patch)
treecdecfc318a74af39d3e967e8a3a030388ece3fea /futures
parent842d54732bce8f9c8b070d9bed9809b70ed728a7 (diff)
downloadiced-6759a5c56fc53286d77698ac9a86812b6d7b03ff.tar.gz
iced-6759a5c56fc53286d77698ac9a86812b6d7b03ff.tar.bz2
iced-6759a5c56fc53286d77698ac9a86812b6d7b03ff.zip
Log event subscription error as a warning
Diffstat (limited to 'futures')
-rw-r--r--futures/src/subscription/tracker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/futures/src/subscription/tracker.rs b/futures/src/subscription/tracker.rs
index 43222b5b..3a8d4a87 100644
--- a/futures/src/subscription/tracker.rs
+++ b/futures/src/subscription/tracker.rs
@@ -135,7 +135,7 @@ where
.filter_map(|connection| connection.listener.as_mut())
.for_each(|listener| {
if let Err(error) = listener.try_send(event.clone()) {
- log::error!(
+ log::warn!(
"Error sending event to subscription: {:?}",
error
);