Browse Source

only show status output when enabled via env var

master
Fr3deric 5 years ago
parent
commit
497d340503
  1. 11
      wii-pair/daemon.py

11
wii-pair/daemon.py

@ -168,9 +168,11 @@ t2.start() @@ -168,9 +168,11 @@ t2.start()
while not t2.connected:
time.sleep(0.1)
tStatus = StatusThread(t1, t2)
tStatus.daemon = True
tStatus.start()
tStatus = None
if os.environ.get('DEBUG_STATUS', 0) == '1':
tStatus = StatusThread(t1, t2)
tStatus.daemon = True
tStatus.start()
wiis = [t1, t2]
@ -238,6 +240,7 @@ try: @@ -238,6 +240,7 @@ try:
except (KeyboardInterrupt, SystemExit):
t1.stop = True
t2.stop = True
tStatus.stop = True
if tStatus is not None:
tStatus.stop = True
sys.exit()

Loading…
Cancel
Save