Show raw hex lines as they're collected

This commit is contained in:
ImBenji
2025-08-29 16:20:48 +01:00
parent d007caacd5
commit fd75a36381

View File

@@ -166,7 +166,7 @@ class ProtocolBlockingService {
// If this is hex data and we're tracking a peer packet
else if (packetLine.contains('0x') && _currentPeerIP != null) {
_currentPacketHex.add(packetLine);
print('📦 Collecting hex data for ${_currentPeerIP}: ${_currentPacketHex.length} lines');
print('📦 HEX LINE: $packetLine');
}
}