We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 130802c commit 628d656Copy full SHA for 628d656
plugins/listener/src/fsm.rs
@@ -202,14 +202,14 @@ impl Session {
202
.collect();
203
204
for &sample in &mixed {
205
- if let Err(e) = process_tx.send(sample).await {
206
- tracing::error!("process_tx_send_error: {:?}", e.0);
+ if let Err(_) = process_tx.send(sample).await {
+ tracing::error!("process_tx_send_error");
207
return;
208
}
209
210
if record {
211
- if let Err(e) = save_tx.send(sample).await {
212
- tracing::error!("save_tx_send_error: {:?}", e.0);
+ if let Err(_) = save_tx.send(sample).await {
+ tracing::error!("save_tx_send_error");
213
214
215
0 commit comments