From cf9b09042ef4e1482bf28cbbc21a0c89a10c4113 Mon Sep 17 00:00:00 2001 From: Astra Date: Mon, 20 May 2024 19:12:18 +0900 Subject: [PATCH] Remove leftover logging --- lib/nfc/protocols/mf_plus/mf_plus_poller_i.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/nfc/protocols/mf_plus/mf_plus_poller_i.c b/lib/nfc/protocols/mf_plus/mf_plus_poller_i.c index 2a615460e..b7196ab2c 100644 --- a/lib/nfc/protocols/mf_plus/mf_plus_poller_i.c +++ b/lib/nfc/protocols/mf_plus/mf_plus_poller_i.c @@ -45,10 +45,8 @@ MfPlusError mf_plus_poller_send_chunk( if(bit_buffer_get_size_bytes(instance->rx_buffer) > sizeof(uint8_t)) { bit_buffer_copy_right(rx_buffer, instance->rx_buffer, sizeof(uint8_t)); - FURI_LOG_D(TAG, "Received %d bytes", bit_buffer_get_size_bytes(rx_buffer)); } else { bit_buffer_reset(rx_buffer); - FURI_LOG_D(TAG, "Received 0 bytes"); } } while(false);