From 3033e07152641e1193376e3f0891c51f8b073d50 Mon Sep 17 00:00:00 2001 From: chrin Date: Thu, 27 Jul 2023 09:14:54 +0200 Subject: [PATCH] print added to closeEvent --- base.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/base.py b/base.py index d8ceace..7cd595f 100644 --- a/base.py +++ b/base.py @@ -910,8 +910,11 @@ class BaseWindow(QMainWindow): #Close all dock widgets #self.removeDockWidget(self.hdf_dock_widget) self.logger.info("Closing Application") + print("Closing Application", flush=True) self.save_application_settings() QApplication.processEvents() + print( ("Stopping Monitors. This may on occasion lead to " + + "NO CYTHON CALLBACK MATCH FOUND notices"), flush=True) self.cafe.monitorStopAll() time.sleep(0.05) self.cafe.terminate()