Silent Tor terminate error
This commit is contained in:
parent
145d4dbd69
commit
61b4d97832
1 changed files with 4 additions and 1 deletions
|
@ -90,7 +90,10 @@ class TorManager:
|
||||||
|
|
||||||
def stopTor(self):
|
def stopTor(self):
|
||||||
self.log.debug("Stopping...")
|
self.log.debug("Stopping...")
|
||||||
|
try:
|
||||||
self.tor_process.terminate()
|
self.tor_process.terminate()
|
||||||
|
except Exception, err:
|
||||||
|
self.log.error("Error stopping Tor: %s" % err)
|
||||||
|
|
||||||
def downloadTor(self):
|
def downloadTor(self):
|
||||||
self.log.info("Downloading Tor...")
|
self.log.info("Downloading Tor...")
|
||||||
|
|
Loading…
Reference in a new issue