From 5ef291bd5df892d107a634ac8c5a36e03f104357 Mon Sep 17 00:00:00 2001 From: Nickiel12 Date: Tue, 20 Aug 2024 20:29:03 -0700 Subject: [PATCH] added another info call --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) 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}"),