Skip to content

Commit

Permalink
Change log.info to log.warn for disabling sync stepping
Browse files Browse the repository at this point in the history
  • Loading branch information
karoliineh committed Sep 13, 2024
1 parent ffeac79 commit d14fd15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ private EdgeInfo findTargetEdge(EdgeInfo primaryTargetEdge, List<? extends EdgeI
.filter(e -> e.cfgNodeId().equals(primaryTargetEdge.cfgNodeId()))
.toList();
if (targetEdgesByCFGNode.size() > 1) {
log.info("Disabling synchronous stepping in the debugging thread \"" + threadName + "\", as the path there is ambiguous.");
log.warn("Disabling synchronous stepping in the debugging thread \"" + threadName + "\", as the path there is ambiguous.");
}
return targetEdgesByCFGNode.size() == 1 ? targetEdgesByCFGNode.get(0) : null;
}
Expand Down

0 comments on commit d14fd15

Please sign in to comment.