Hi. I have a question: If I try to deserialize invalid json with serde and use `unwrap`, my app panics and prints a message. Instead of panic'ing, I want print this error message: ``` rust match Message::deserialize(&msg) { Ok(msg) => CHANNEL.send(msg).await, Err(error) => warn!("{:?}", error), } ``` But this `warn` is not possible, because my serde error is not implementing `trait Format` of defmt. What were an alternative?