gpg: remove length type logging

This commit is contained in:
Roman Zeyde 2016-04-26 21:46:39 +03:00
parent 340aae4fb8
commit e09571151c

View File

@ -221,7 +221,6 @@ def parse_packets(stream):
length_type = util.low_bits(tag, 2)
tag = tag >> 2
fmt = {0: '>B', 1: '>H', 2: '>L'}[length_type]
log.debug('length_type: %s', fmt)
packet_size = stream.readfmt(fmt)
log.debug('packet length: %d', packet_size)