4

In order to fix my adb setup I`ve set ADB trace mode to all using the following command:

set ADB_TRACE=all

Now that I've resolved my issue, I would like to reset the ADB trace mode to the default (out of the box) value, so my cmd output doesn`t get cluttered with unnecessary traces.

Martin
  • 3,396
  • 5
  • 41
  • 67
Jeroen Mols
  • 3,436
  • 17
  • 24

2 Answers2

4

The default is ADB_TRACE=0

You could try following:

set ADB_TRACE=0
VividD
  • 10,456
  • 6
  • 64
  • 111
Oli
  • 3,496
  • 23
  • 32
1

The accepted answer didn’t completely help me. It did remove the trace, but also it gives this message after every adb command: Unknown trace flag: 0

What actually helped me, was simply this: export ADB_TRACE=

stansult
  • 1,323
  • 10
  • 18