From 4fa24e6583a300962071a1d3a5493abf58fd36cc Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 7 Jan 2025 12:32:29 -0500 Subject: [PATCH] monitor: Make BTSNOOP_PRIORITY_DEBUG the default This makes BTSNOOP_PRIORITY_DEBUG the default so it captures debug logs from the likes of bluetoothd which is very handy when debugging problems as otherwise the logs have to entered separately making it hard to figure out the ordering of the messages. --- monitor/packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/packet.c b/monitor/packet.c index 3e5b3f5e1..2eb50896b 100644 --- a/monitor/packet.c +++ b/monitor/packet.c @@ -101,7 +101,7 @@ #define UNKNOWN_MANUFACTURER 0xffff static time_t time_offset = ((time_t) -1); -static int priority_level = BTSNOOP_PRIORITY_INFO; +static int priority_level = BTSNOOP_PRIORITY_DEBUG; static unsigned long filter_mask = 0; static bool index_filter = false; static uint16_t index_current = 0; -- 2.47.3