Log broadcast error as an error instead of a warning
This commit is contained in:
parent
d6c3da21f7
commit
3daa9c2cc8
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ impl Pool {
|
||||||
.filter_map(|connection| connection.listener.as_mut())
|
.filter_map(|connection| connection.listener.as_mut())
|
||||||
.for_each(|listener| {
|
.for_each(|listener| {
|
||||||
if let Err(error) = listener.try_send(event) {
|
if let Err(error) = listener.try_send(event) {
|
||||||
log::warn!(
|
log::error!(
|
||||||
"Error sending event to subscription: {:?}",
|
"Error sending event to subscription: {:?}",
|
||||||
error
|
error
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue