Update logging settings

This commit is contained in:
Tim Bentley 2019-07-28 09:40:38 +01:00
parent aa5e33da7d
commit 095881cb90
1 changed files with 2 additions and 1 deletions

View File

@ -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
"""