Restore default adb trace mode

To fix my adb setup, I set the ADB trace mode for everyone using the following command:

set ADB_TRACE=all 

Now that I have solved my problem, I would like to reset the ADB trace mode to its default value (out of the box), so my cmd output does not clutter up unnecessary traces.

+4
source share
2 answers

The default is ADB_TRACE=0

You can try the following:

 set ADB_TRACE=0 
+3
source

The accepted answer did not completely help me. He removed the trace, but also he gives this message after every adb command: Unknown trace flag: 0

What really helped me was just like this: export ADB_TRACE=

+1
source

Source: https://habr.com/ru/post/1502755/


All Articles