Skip to content

Commit

Permalink
feat(etp): add additional logging for eom ack
Browse files Browse the repository at this point in the history
  • Loading branch information
GwnDaan committed Jun 3, 2024
1 parent 0b702b7 commit 2ba3eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isobus/src/can_extended_transport_protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ namespace isobus
session->state = StateMachineState::None;
bool successful = (numberOfBytesTransferred == session->get_message_length());
close_session(session, successful);
LOG_DEBUG("[ETP]: Completed tx session for 0x%05X from %hu", parameterGroupNumber, source->get_address());
LOG_DEBUG("[ETP]: Completed tx session for 0x%05X from %hu (successful=%s)", parameterGroupNumber, source->get_address(), successful ? "true" : "false");
}
else
{
Expand Down

0 comments on commit 2ba3eba

Please sign in to comment.