From d53c6ad2403fecae693d124bb88cc8ac3efb50be Mon Sep 17 00:00:00 2001 From: Zhang Hai Peng Date: Tue, 14 Jul 2026 10:37:17 +0800 Subject: [PATCH] fix(ble/bluedroid): downgrade numeric comparison log to warning (cherry picked from commit 72a49ed53b1cd9cee7c1064364982fac44c38a4e) Co-authored-by: zhanghaipeng --- components/bt/host/bluedroid/stack/smp/smp_keys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bt/host/bluedroid/stack/smp/smp_keys.c b/components/bt/host/bluedroid/stack/smp/smp_keys.c index 7212aec08fa..7ad40f297da 100644 --- a/components/bt/host/bluedroid/stack/smp/smp_keys.c +++ b/components/bt/host/bluedroid/stack/smp/smp_keys.c @@ -1759,7 +1759,7 @@ UINT32 smp_calculate_g2(UINT8 *u, UINT8 *v, UINT8 *x, UINT8 *y) smp_debug_print_nbyte_little_endian (p_prnt, (const UINT8 *)"cmac mod 2**32 mod 10**6", 4); #endif - SMP_TRACE_ERROR("Value for numeric comparison = %d", vres); + SMP_TRACE_WARNING("Value for numeric comparison = %d", vres); return vres; }