mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-10 03:37:28 -03:00
Move debug log call in meek.start()
This commit is contained in:
parent
29d5928624
commit
54bfca5f4b
1 changed files with 1 additions and 2 deletions
|
@ -75,8 +75,6 @@ class Meek(object):
|
||||||
queue.put(line)
|
queue.put(line)
|
||||||
out.close()
|
out.close()
|
||||||
|
|
||||||
self.common.log("Meek", "start", self.meek_client_file_path)
|
|
||||||
|
|
||||||
# Abort early if we can't find the Meek client
|
# Abort early if we can't find the Meek client
|
||||||
if self.meek_client_file_path is None or not os.path.exists(
|
if self.meek_client_file_path is None or not os.path.exists(
|
||||||
self.meek_client_file_path
|
self.meek_client_file_path
|
||||||
|
@ -84,6 +82,7 @@ class Meek(object):
|
||||||
raise MeekNotFound()
|
raise MeekNotFound()
|
||||||
|
|
||||||
# Start the Meek Client as a subprocess.
|
# Start the Meek Client as a subprocess.
|
||||||
|
self.common.log("Meek", "start", "Starting meek client")
|
||||||
|
|
||||||
if self.common.platform == "Windows":
|
if self.common.platform == "Windows":
|
||||||
# In Windows, hide console window when opening meek-client.exe subprocess
|
# In Windows, hide console window when opening meek-client.exe subprocess
|
||||||
|
|
Loading…
Reference in a new issue