Skip to content

Commit

Permalink
added buildChainsawLogPanel to same invokeLater method
Browse files Browse the repository at this point in the history
  • Loading branch information
grobmeier committed Dec 26, 2023
1 parent 7bc3d40 commit 58399e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/apache/log4j/chainsaw/ChainsawStarter.java
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,9 @@ public PermissionCollection getPermissions(CodeSource codesource) {
EventQueue.invokeLater(() -> {
logUI.activateViewer();
splashViewer.removeSplash();
logUI.buildChainsawLogPanel();
});
EventQueue.invokeLater(logUI::buildChainsawLogPanel);
//EventQueue.invokeLater();

logger.info("SecurityManager is now: {}", System.getSecurityManager());
}
Expand Down

0 comments on commit 58399e9

Please sign in to comment.