diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-01 17:41:16 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-01 17:41:16 +0100 |
commit | 4f06114c79f804ed404d40ffad771cbacab0fe8b (patch) | |
tree | 8e8122ce2fbf71f6564fcd579216e0217c034a17 /src/can-bus.cpp | |
parent | 0c9926d385f357e4a0a8bb2932da0aa6e2503b9b (diff) |
Fix: wrong format to display can_message_t information
Change-Id: I6c17c68d8e995022886750f2ef05348b544cbde5
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can-bus.cpp')
-rw-r--r-- | src/can-bus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/can-bus.cpp b/src/can-bus.cpp index 52c81cf1..6279a2a7 100644 --- a/src/can-bus.cpp +++ b/src/can-bus.cpp @@ -240,7 +240,7 @@ can_message_t can_bus_t::next_can_message() { can_msg = can_message_q_.front(); can_message_q_.pop(); - DEBUG(binder_interface, "next_can_message: Here is the next can message : id %d, length %d", can_msg.get_id(), can_msg.get_length()); + DEBUG(binder_interface, "next_can_message: Here is the next can message : id %X, length %X", can_msg.get_id(), can_msg.get_length()); return can_msg; } |