summaryrefslogtreecommitdiffstats
path: root/module/gui/connector.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/gui/connector.py')
-rw-r--r--module/gui/connector.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/module/gui/connector.py b/module/gui/connector.py
index e52cf42ff..64c05ba8c 100644
--- a/module/gui/connector.py
+++ b/module/gui/connector.py
@@ -316,4 +316,28 @@ class connector(QThread):
self.emit(SIGNAL("proxy_error"), "uploadContainer")
finally:
self.mutex.unlock()
+
+ def getLog(self, offset):
+ """
+ get log
+ """
+ self.mutex.lock()
+ try:
+ return self.proxy.get_log(offset)
+ except:
+ self.emit(SIGNAL("proxy_error"), "getLog")
+ finally:
+ self.mutex.unlock()
+
+ def stopAllDownloads(self):
+ """
+ get log
+ """
+ self.mutex.lock()
+ try:
+ self.proxy.stop_downloads()
+ except:
+ self.emit(SIGNAL("proxy_error"), "stopAllDownloads")
+ finally:
+ self.mutex.unlock()