diff options
| author | 2021-02-23 02:16:12 +0100 | |
|---|---|---|
| committer | 2021-02-23 02:16:12 +0100 | |
| commit | 6759a5c56fc53286d77698ac9a86812b6d7b03ff (patch) | |
| tree | cdecfc318a74af39d3e967e8a3a030388ece3fea /futures/src | |
| parent | 842d54732bce8f9c8b070d9bed9809b70ed728a7 (diff) | |
| download | iced-6759a5c56fc53286d77698ac9a86812b6d7b03ff.tar.gz iced-6759a5c56fc53286d77698ac9a86812b6d7b03ff.tar.bz2 iced-6759a5c56fc53286d77698ac9a86812b6d7b03ff.zip | |
Log event subscription error as a warning
Diffstat (limited to '')
| -rw-r--r-- | futures/src/subscription/tracker.rs | 2 | 
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                      ); | 
