From ac8c75b6c8b52b75c8070504b68c5974df159abf Mon Sep 17 00:00:00 2001 From: dzmipt Date: Fri, 5 Jan 2024 23:24:29 +0100 Subject: [PATCH] restoring logging for test debugging --- src/studio/ui/StudioWindow.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/studio/ui/StudioWindow.java b/src/studio/ui/StudioWindow.java index a6c13551..e69e3107 100755 --- a/src/studio/ui/StudioWindow.java +++ b/src/studio/ui/StudioWindow.java @@ -835,9 +835,11 @@ public void close() { } else { boolean result = execute(editorTab -> editorTab.getEditorsPanel().closeTab(editorTab)); if (!result) return; + log.info("StudioWindow closing"); // closing the last tab would trigger this code again if (allWindows.contains(this)) { allWindows.remove(this); + log.info("StudioWindow disposing"); dispose(); refreshAllMenus(); }