Show fcnt in event log.

Closes #121.
This commit is contained in:
Orne Brocaar 2023-03-02 13:26:43 +00:00
parent ddea09d9d4
commit 43567ccfd2

View File

@ -116,8 +116,9 @@ pub async fn get_event_logs(
description: k.clone(), description: k.clone(),
body: serde_json::to_string(&pl)?, body: serde_json::to_string(&pl)?,
properties: [ properties: [
("DR".to_string(), format!("{}", pl.dr)), ("DR".to_string(), pl.dr.to_string()),
("FPort".to_string(), format!("{}", pl.f_port)), ("FPort".to_string(), pl.f_port.to_string()),
("FCnt".to_string(), pl.f_cnt.to_string()),
("Data".to_string(), hex::encode(&pl.data)), ("Data".to_string(), hex::encode(&pl.data)),
] ]
.iter() .iter()