Skip to content

Commit

Permalink
Add class and function name to log message
Browse files Browse the repository at this point in the history
  • Loading branch information
falk-haleytek committed Sep 10, 2024
1 parent 66a199d commit 4211311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implementation/routing/src/routing_manager_stub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,7 @@ routing_manager_stub::on_net_state_change(
void routing_manager_stub::on_offer_service(client_t _client,
service_t _service, instance_t _instance, major_version_t _major, minor_version_t _minor) {

VSOMEIP_DEBUG << "ON_OFFER_SERVICE("
VSOMEIP_DEBUG << "routing_manager_stub::" << __func__ << ": ON_OFFER_SERVICE("
<< std::hex << std::setw(4) << std::setfill('0') << _client <<"): ["
<< std::hex << std::setw(4) << std::setfill('0') << _service << "."
<< std::hex << std::setw(4) << std::setfill('0') << _instance
Expand Down

0 comments on commit 4211311

Please sign in to comment.