Skip to content

Commit

Permalink
More trace
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Kurz <[email protected]>
  • Loading branch information
scottkurz committed Sep 14, 2023
1 parent 9991e01 commit 7644d0a
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1682,6 +1682,16 @@ private static void addToQueue(QueueObj obj, Queue<QueueObj> queue) {
System.err.println("* null value added to queue.");
return;
}
if (obj.obj instanceof Label) {
Label l = (Label)obj.obj;
if (l.getText().contains("arameter")) {
System.out.println("SKSK: adding " + obj.obj + ", with text = " + l.getText() + " with display = " + l.getDisplay());
System.out.println("SKSK: from parent = " + obj.parent);
System.out.println("SKSK: -- beg dump stack --");
Thread.dumpStack();
System.out.println("SKSK: -- end dump stack --");
}
}
queue.offer(obj);
}

Expand Down

0 comments on commit 7644d0a

Please sign in to comment.