Ian Vink
Ian Vink

Reputation: 68770

Mono Debug - How to turn off?

I turned on the Mono Debug info with:

export MONO_OPTIONS=--trace=E:all
export MONO_LOG_MASK=asm
export MONO_LOG_LEVEL=debug

in the Mac's terminal. How do I disable debugging now and return to the normal settings.

Upvotes: 6

Views: 3350

Answers (1)

cdhowie
cdhowie

Reputation: 169058

Just unset all those variables:

unset MONO_OPTIONS MONO_LOG_MASK MONO_LOG_LEVEL

Upvotes: 2

Related Questions