Skip to content

Commit

Permalink
Removed debug actions from reciever_thread.py
Browse files Browse the repository at this point in the history
  • Loading branch information
shauneccles authored Feb 6, 2021
1 parent 256e1dd commit 33f136b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sacn/receiving/receiver_thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ def run(self):
tmp_packet = DataPacket.make_data_packet(raw_data)
except: # try to make a DataPacket. If it fails just go over it
continue
self.logger.debug(f'Received sACN packet:\n{tmp_packet}')

self.check_for_stream_terminated_and_refresh_timestamp(tmp_packet)
self.refresh_priorities(tmp_packet)
Expand Down Expand Up @@ -146,7 +145,6 @@ def fire_callbacks_universe(self, packet: DataPacket) -> None:
if packet.universe not in self.previousData.keys() or \
self.previousData[packet.universe] is None or \
self.previousData[packet.universe] != packet.dmxData:
self.logger.debug('')
# set previous data and inherit callbacks
self.previousData[packet.universe] = packet.dmxData
for callback in self.callbacks[packet.universe]:
Expand Down

0 comments on commit 33f136b

Please sign in to comment.