if (suspendedBreakpoints != null && !suspendedBreakpoints.isEmpty()) {
// we need to suspend the debug target
suspend();
for (String nodeId : suspendedBreakpoints) {
BacklogTracerEventMessage evMsg = CamelDebugUtils.getBacklogTracerEventMessage(getMessagesForNode(nodeId));
String id = generateKey(evMsg);
CamelThread t = getThreadForId(id);
// now we can access the stack frames
String endpointId = t.getTopStackFrame() != null ? ((CamelStackFrame)t.getTopStackFrame()).getEndpointId() : null;