diff --git a/src/lib.rs b/src/lib.rs index f908539..a5af1c7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -89,6 +89,7 @@ pub async fn send_to_wc_task( while let Ok(msg) = from_app.recv().await { #[cfg(debug_assertions)] { + info!("Sending message to socket!"); // serialized message match serde_json::to_string(&msg) { Err(e) => error!("Could not serialize ApplicationMessage to JSON! {e}"),