From 095881cb903ec7daa313fed9ca833c86c1454fe8 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 28 Jul 2019 09:40:38 +0100 Subject: [PATCH] Update logging settings --- openlp/core/threading.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openlp/core/threading.py b/openlp/core/threading.py index 9a4043292..38c68638a 100644 --- a/openlp/core/threading.py +++ b/openlp/core/threading.py @@ -24,10 +24,11 @@ The :mod:`openlp.core.threading` module contains some common threading code """ from PyQt5 import QtCore +from openlp.core.common.mixins import LogMixin from openlp.core.common.registry import Registry -class ThreadWorker(QtCore.QObject): +class ThreadWorker(QtCore.QObject, LogMixin): """ The :class:`~openlp.core.threading.ThreadWorker` class provides a base class for all worker objects """