From c4cff01520a0ba4428e734bc1748defecec6de04 Mon Sep 17 00:00:00 2001 From: Evan Feenstra Date: Mon, 5 Jun 2023 14:23:50 -0700 Subject: [PATCH] log mqtt received details --- sphinx-key/src/conn/mqtt.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/sphinx-key/src/conn/mqtt.rs b/sphinx-key/src/conn/mqtt.rs index 0ae05f3..f63e526 100644 --- a/sphinx-key/src/conn/mqtt.rs +++ b/sphinx-key/src/conn/mqtt.rs @@ -76,6 +76,7 @@ pub fn make_client( Event::Published(_mes_id) => info!("RECEIVED Published MESSAGE"), Event::Received(msg) => { let topic_opt = msg.topic(); + log::info!("received msg details {:?}", msg.details()); if let Some(topic) = topic_opt { if topic.ends_with(topics::VLS) { tx.send(CoreEvent::VlsMessage(msg.data().to_vec()))