From fd75a36381910e3b7dca43cf77ccdd9442011ca8 Mon Sep 17 00:00:00 2001 From: ImBenji Date: Fri, 29 Aug 2025 16:20:48 +0100 Subject: [PATCH] Show raw hex lines as they're collected --- lib/services/protocol_blocking_service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/protocol_blocking_service.dart b/lib/services/protocol_blocking_service.dart index 7e366f0..d0ec02e 100644 --- a/lib/services/protocol_blocking_service.dart +++ b/lib/services/protocol_blocking_service.dart @@ -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'); } }