8000 Comment out noisy debug trace · ammogcoder/PyMySQL@18b62f6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 18b62f6

Browse files
committed
Comment out noisy debug trace
1 parent 88b4125 commit 18b62f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymysql/connections.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ def _read_packet(self, packet_type=MysqlPacket):
986986
buff = b''
987987
while True:
988988
packet_header = self._read_bytes(4)
989-
if DEBUG: dump_packet(packet_header)
989+
#if DEBUG: dump_packet(packet_header)
990990

991991
btrl, btrh, packet_number = struct.unpack('<HBB', packet_header)
992992
bytes_to_read = btrl + (btrh << 16)

0 commit comments

Comments
 (0)
0