1

I am debugging Bluetooth on Android and I want to list all avaliable messages related to Bluetooth but I can't find anywhere a list of Bluetooth tags.

Is there a `list` available? or a `regex` that allows me to see all messages related to Bluetooth? 

FYI: I tried logcat ".*[bB]luetooth.*":V *:S but it just outputs

--------- beginning of /dev/log/main
--------- beginning of /dev/log/system
Ahmed
  • 3,398
  • 12
  • 45
  • 64

1 Answers1

0

Did you try using non greedy quantifiers on the dot meta-charracter.

.*?[bB]luetooth.*?":V *:S
Stephan
  • 41,764
  • 65
  • 238
  • 329
  • `.*` matches zero or more characters, the most posible while `.*?` does the same but the least possible. The latter "eats" less characters. – Stephan Sep 17 '12 at 13:12