My QA Projects

QA Projects I was involded.

View on GitHub

Types of logs

rundown of logs to diagnose Bluetooth testing issues, analyze performance, and ensure compliance.

adb devices
adb bugreport

# or you pull a logcat
# capture logcat output in real-time and save it to a file on your computer

adb logcat > logcat.txt
adb pull /sdcard/logcat.log /path/to/local/directory/
adb logcat -d > /path/to/local/directory/logcat.txt

At Google they have a software that unzips the bugreport and enables you to


1. Bluetooth Stack Logs

2. Bluetooth Controller Logs

3. Bluetooth HCI Command/Event Logs

4. Bluetooth Packet Logs

5. Bluetooth LE Advertising Logs

6. Bluetooth Profiles Logs

7. Connection Event Logs

8. Error Logs

9. Power Consumption Logs

10. Trace Logs


in more detail

Bluetooth HCI (Host Controller Interface) Snoop Log

for in-depth analysis of Bluetooth communication, providing insights into the inner workings of Bluetooth interactions and helping to resolve complex issues related to Bluetooth technology