Skip to content

Commit

Permalink
downgraded file receiving pririty
Browse files Browse the repository at this point in the history
  • Loading branch information
huuck committed Nov 9, 2019
1 parent 8449097 commit b5b8134
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adbhoney/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def recv_binary_chunk(self, message, data, f):
if len(message.data) == 0:
self.sending_binary = False
return
logger.info("Received binary chunk of size: {}".format(len(message.data)))
logger.debug("Received binary chunk of size: {}".format(len(message.data)))
# look for that shitty DATAXXXX where XXXX is the length of the data block that's about to be sent
# (i.e. DATA\x00\x00\x01\x00)
if message.command == protocol.CMD_WRTE and bytes('DATA', "utf-8") in message.data:
Expand Down

0 comments on commit b5b8134

Please sign in to comment.