:orphan: .. title:: BT_HRS_LOG_LEVEL .. option:: CONFIG_BT_HRS_LOG_LEVEL *Heart Rate service log level* Type: ``int`` Help ==== Sets log level for the Heart Rate service. Levels are: 0 OFF, do not write 1 ERROR, only write LOG_ERR 2 WARNING, write LOG_WRN in addition to previous level 3 INFO, write LOG_INF in addition to previous levels 4 DEBUG, write LOG_DBG in addition to previous levels Direct dependencies =================== \ :option:`LOG ` && \ :option:`BT_HRS ` && \ :option:`BT_CONN ` && \ :option:`BT_HCI ` && \ :option:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 0 Kconfig definition ================== .. highlight:: kconfig At ``subsys/bluetooth/services/Kconfig.hrs:9`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:9`` → ``subsys/bluetooth/Kconfig:175`` → ``subsys/bluetooth/services/Kconfig:13`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → GATT Services → Enable GATT Heart Rate service .. parsed-literal:: config BT_HRS_LOG_LEVEL int "Heart Rate service log level" range 0 4 default 0 depends on \ :option:`LOG ` && \ :option:`BT_HRS ` && \ :option:`BT_CONN ` && \ :option:`BT_HCI ` && \ :option:`BT ` help Sets log level for the Heart Rate service. Levels are: 0 OFF, do not write 1 ERROR, only write LOG_ERR 2 WARNING, write LOG_WRN in addition to previous level 3 INFO, write LOG_INF in addition to previous levels 4 DEBUG, write LOG_DBG in addition to previous levels *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*