added another info call

This commit is contained in:
Nickiel12 2024-08-20 20:29:03 -07:00
parent a69cd90adb
commit 5ef291bd5d

View file

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