aboutsummaryrefslogtreecommitdiff
path: root/embassy-net-adin1110
diff options
context:
space:
mode:
authorRenĂ© van Dorst <[email protected]>2023-08-28 19:00:00 +0200
committerRenĂ© van Dorst <[email protected]>2023-08-28 19:00:00 +0200
commitd02886786e4c496dc5a2c8851a7a01764905182b (patch)
tree3bba227c9efffdea5cf73e600dc9c1db08d1c842 /embassy-net-adin1110
parent2db4d01198221850c1587d035c68baeb40d5c639 (diff)
Show the error type
Diffstat (limited to 'embassy-net-adin1110')
-rw-r--r--embassy-net-adin1110/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-net-adin1110/src/lib.rs b/embassy-net-adin1110/src/lib.rs
index 4af054aea..9eca801f3 100644
--- a/embassy-net-adin1110/src/lib.rs
+++ b/embassy-net-adin1110/src/lib.rs
@@ -474,8 +474,8 @@ impl<'d, SPI: SpiDevice, INT: Wait, RST: OutputPin> Runner<'d, SPI, INT, RST> {
474 AdinError::Spi(e) => { 474 AdinError::Spi(e) => {
475 error!("RX Spi error {}", e.kind()); 475 error!("RX Spi error {}", e.kind());
476 } 476 }
477 _ => { 477 e => {
478 error!("RX Error"); 478 error!("RX Error {:?}", e);
479 } 479 }
480 }, 480 },
481 }, 481 },