From 67bb97cbf3d72c3e680f4ce3ee48a3b9ea491b51 Mon Sep 17 00:00:00 2001 From: Rahul Tank Date: Thu, 23 Sep 2021 17:31:27 +0530 Subject: [PATCH] Nimble: Removed Critical debug level from menuconfig, since it internally maps to level Error. --- components/bt/host/nimble/Kconfig.in | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/components/bt/host/nimble/Kconfig.in b/components/bt/host/nimble/Kconfig.in index dac35641e8..a3a23e1574 100644 --- a/components/bt/host/nimble/Kconfig.in +++ b/components/bt/host/nimble/Kconfig.in @@ -44,8 +44,6 @@ choice BT_NIMBLE_LOG_LEVEL config BT_NIMBLE_LOG_LEVEL_NONE bool "No logs" - config BT_NIMBLE_LOG_LEVEL_CRIT - bool "Critical logs" config BT_NIMBLE_LOG_LEVEL_ERROR bool "Error logs" config BT_NIMBLE_LOG_LEVEL_WARNING @@ -62,8 +60,7 @@ config BT_NIMBLE_LOG_LEVEL default 1 if BT_NIMBLE_LOG_LEVEL_INFO default 2 if BT_NIMBLE_LOG_LEVEL_WARNING default 3 if BT_NIMBLE_LOG_LEVEL_ERROR - default 4 if BT_NIMBLE_LOG_LEVEL_CRIT - default 5 if BT_NIMBLE_LOG_LEVEL_NONE + default 4 if BT_NIMBLE_LOG_LEVEL_NONE config BT_NIMBLE_MAX_CONNECTIONS int "Maximum number of concurrent connections"