diff mbox series

[BlueZ,v1] monitor: Make BTSNOOP_PRIORITY_DEBUG the default

Message ID 20250107173542.1449444-1-luiz.dentz@gmail.com
State New
Headers show
Series [BlueZ,v1] monitor: Make BTSNOOP_PRIORITY_DEBUG the default | expand

Commit Message

Luiz Augusto von Dentz Jan. 7, 2025, 5:35 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

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(-)

Comments

patchwork-bot+bluetooth@kernel.org Jan. 8, 2025, 7:30 p.m. UTC | #1
Hello:

This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Tue,  7 Jan 2025 12:35:42 -0500 you wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> 
> 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.
> 
> [...]

Here is the summary with links:
  - [BlueZ,v1] monitor: Make BTSNOOP_PRIORITY_DEBUG the default
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=4fa24e6583a3

You are awesome, thank you!
diff mbox series

Patch

diff --git a/monitor/packet.c b/monitor/packet.c
index 3e5b3f5e1f26..2eb50896b55b 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;