Skip to content

Commit

Permalink
logs
Browse files Browse the repository at this point in the history
  • Loading branch information
grooviegermanikus committed Dec 19, 2023
1 parent 4a92064 commit 7d4da3e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/grpc_stream_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ where
let jh_channelizer = spawn(async move {
let mut source_stream = pin!(grpc_source_stream);
'main_loop: while let Some(payload) = source_stream.next().await {
debug!("multiplex -> ...");

match tx.send(payload) {
Ok(receivers) => {
trace!("sent data to {} receivers", receivers);
Expand All @@ -32,7 +30,7 @@ where
},
};
}
panic!("forward task failed");
panic!("channelizer task failed");
});

(multiplexed_messages, jh_channelizer)
Expand Down

0 comments on commit 7d4da3e

Please sign in to comment.