Skip to content

Commit

Permalink
change the method of not outputting dispatch_callback_subscription
Browse files Browse the repository at this point in the history
…from deleting functions to adding filters

Signed-off-by: yamasaki <114902604+ymski@users.noreply.github.com>
  • Loading branch information
ymski committed May 24, 2023
1 parent 650b13b commit a76730c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions CARET_trace/src/ros_trace_points.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,27 @@ void ros_trace_callback_end(const void * callback)
}
}

void ros_trace_dispatch_subscription_callback(
const void * message,
const void * callback,
const uint64_t source_timestamp,
const uint64_t message_timestamp)
{
(void) message
(void) callback
(void) source_timestamp
(void) message_timestamp

// #ifdef DEBUG_OUTPUT
// std::cerr << "dispatch_subscription_callback," <<
// message << "," <<
// callback << "," <<
// source_timestamp << "," <<
// message_timestamp << std::endl;
// #endif
}
}

void ros_trace_dispatch_intra_process_subscription_callback(
const void * message,
const void * callback,
Expand Down

0 comments on commit a76730c

Please sign in to comment.