Skip to content

Commit f3bb155

Browse files
committed
Removed logging lines from debugging
1 parent cb3e974 commit f3bb155

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

libs/reset_device/connection_monitor.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@
1616
if reset_lib.is_wifi_active() == False:
1717
no_conn_counter += 10
1818
consecutive_active_reports = 0
19-
os.system('echo no conn counter: ' + str(no_conn_counter) + ' seconds >> /home/pi/connlog')
2019
else:
2120
consecutive_active_reports += 1
2221
no_conn_counter += 10
23-
os.system('echo consecutive_active_reports: ' + str(consecutive_active_reports) + ' >> /home/pi/connlog')
2422
if consecutive_active_reports >= 2:
2523
no_conn_counter = 0
2624
consecutive_active_reports = 0

0 commit comments

Comments
 (0)