Show the error type

This commit is contained in:
René van Dorst 2023-08-28 19:00:00 +02:00
parent 2db4d01198
commit d02886786e

View File

@ -474,8 +474,8 @@ impl<'d, SPI: SpiDevice, INT: Wait, RST: OutputPin> Runner<'d, SPI, INT, RST> {
AdinError::Spi(e) => {
error!("RX Spi error {}", e.kind());
}
_ => {
error!("RX Error");
e => {
error!("RX Error {:?}", e);
}
},
},