Reputation: 1678
I am suffering under sound issues with my Bluetooth headset in combination with my Android 5.1.1 device. Therefore I need to debug the Bluetooth connection.
I already got some logs with adb logcat
, but I am concerned that those logs may contain confidential data about me.
Which arguments should I use with adb logcat
, so that the logs only contain relevant Bluetooth and headset data?
Upvotes: 0
Views: 4711
Reputation: 1678
To get logs concerning Bluetooth. Use the logcat plugin of Android Studio (see Restore LogCat window within Android Studio for how to open the logcat plugin) and set following filter options.
Log Tag (regex): BT|luetooth|bt|Bt
Log Level: Debug
Upvotes: 2