Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'common/thread.py')
-rw-r--r--common/thread.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/thread.py b/common/thread.py
index c296c41f1..e90ec1f2f 100644
--- a/common/thread.py
+++ b/common/thread.py
@@ -34,7 +34,10 @@ class GajimThread(threading.Thread):
# END __init__
def run(self):
+ #This is VERY bad
if self.getName() == 'gtkgui':
plugins.gtkgui.plugin(self.queueIn, self.queueOut)
+ elif self.getName() == 'logger':
+ plugins.logger.plugin(self.queueIn, self.queueOut)
# END run
# END GajimThread