aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/rbw-agent/notifications.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/rbw-agent/notifications.rs')
-rw-r--r--src/bin/rbw-agent/notifications.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/rbw-agent/notifications.rs b/src/bin/rbw-agent/notifications.rs
index 334466f..b575cf9 100644
--- a/src/bin/rbw-agent/notifications.rs
+++ b/src/bin/rbw-agent/notifications.rs
@@ -125,13 +125,13 @@ async fn subscribe_to_notifications(url: String, sending_channels: std::sync::Ar
for channel in a.iter() {
let res = channel.send(msg);
if res.is_err() {
- println!("error sending websocket message to channel");
+ eprintln!("error sending websocket message to channel");
}
}
}
},
Err(e) => {
- println!("websocket error: {:?}", e);
+ eprintln!("websocket error: {:?}", e);
},
_ => {}
}