Listener.__init__() creates a placeholder logs/DATE_TIME/sent/uplink.log file, but it is never populated. This is stored in self.log_out_file, and the open file ID is in self.log_out.
To do
In Listener._run_log() after line 468, add a timestamped write of message to self.log_out. Refer to Listener.write_to_catch() for very similar implementation.
Currently
Listener.__init__()
creates a placeholderlogs/DATE_TIME/sent/uplink.log
file, but it is never populated. This is stored inself.log_out_file
, and the open file ID is inself.log_out
.To do
In
Listener._run_log()
after line 468, add a timestamped write ofmessage
toself.log_out
. Refer toListener.write_to_catch()
for very similar implementation.