Skip to content

Commit

Permalink
Transport/UDP: similar behaviour to SimpleTransport.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernardo-Gabriel committed Jan 23, 2025
1 parent 39a5d9f commit 838a7dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Transports/UDP/Listener.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ namespace Transports
m_task.dispatch(msg, DF_KEEP_TIME | DF_KEEP_SRC_EID);

if (m_trace)
msg->toText(std::cerr);
DUNE_MSG(m_task.getName(), "incoming: " + std::string(msg->getName()));

delete msg;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Transports/UDP/Task.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ namespace Transports
return;

if (m_args.trace_out)
msg->toText(std::cerr);
DUNE_MSG(getName(), "outgoing: " + std::string(msg->getName()));

uint16_t rv;
try
Expand Down

0 comments on commit 838a7dc

Please sign in to comment.