Skip to content

Commit

Permalink
Reduce logging
Browse files Browse the repository at this point in the history
  • Loading branch information
rrooggiieerr committed Jun 27, 2024
1 parent 5fc2ad0 commit fe798fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rfcontrol/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def pulses2binary(pulses: str, pulses2binary_mapping) -> str:
else:
logger.debug("No matching pulse sequence found")
return None
logger.debug(binary)
# logger.debug(binary)
return binary


Expand All @@ -33,7 +33,7 @@ def binary2pulses(binary: str, binary2pulses_mapping) -> str:
pulses = ""
for bit in binary:
pulses += binary2pulses_mapping[bit]
logger.debug(pulses)
# logger.debug(pulses)
return pulses


Expand Down

0 comments on commit fe798fe

Please sign in to comment.