mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
extra logging for EA-916477 - T: SuspendContextImpl.setThread
GitOrigin-RevId: 3529eae38ebf58c233e937c52083dd5033606a38
This commit is contained in:
committed by
intellij-monorepo-bot
parent
fdf77933ec
commit
989a7dc786
@@ -238,6 +238,12 @@ public class DebugProcessEvents extends DebugProcessImpl {
|
||||
}
|
||||
else if (event instanceof LocatableEvent) {
|
||||
preloadEventInfo(((LocatableEvent)event));
|
||||
if (eventSet.size() > 1) {
|
||||
// check for more than one different thread
|
||||
if (StreamEx.of(eventSet).select(LocatableEvent.class).map(LocatableEvent::thread).toSet().size() > 1) {
|
||||
LOG.error("Two different threads in LocatableEvents: " + eventSet);
|
||||
}
|
||||
}
|
||||
//AccessWatchpointEvent, BreakpointEvent, ExceptionEvent, MethodEntryEvent, MethodExitEvent,
|
||||
//ModificationWatchpointEvent, StepEvent, WatchpointEvent
|
||||
if (event instanceof StepEvent) {
|
||||
|
||||
Reference in New Issue
Block a user