aboutsummaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authortassaron2022-05-02 18:27:26 -0400
committertassaron2022-05-02 18:27:26 -0400
commitc13d8a3e8a23dcedfcd3d7cea800e7c29aa47e80 (patch)
tree605c2cb90ff26ea99d032391c91d70385e4984ff /src/gui
parent4c5aa37aa6f41d909153a2b7d522db6d7582659a (diff)
log QThread IDs
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/preview_thread.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/preview_thread.py b/src/gui/preview_thread.py
index 137864b..8ec5d28 100644
--- a/src/gui/preview_thread.py
+++ b/src/gui/preview_thread.py
@@ -38,6 +38,7 @@ class Worker(QtCore.QObject):
"components": components,
}
self.queue.put(dic)
+ log.debug('Preview thread id: {}'.format(int(QtCore.QThread.currentThreadId())))
@pyqtSlot()
def process(self):