I'm working on a Python project with the Librosa sound editing library, which makes use of Numba. Every time I call a Librosa function (in this case, pitch_shift), my PyCharm console window spits out literally thousands of lines of DEBUG messages, beginning with
DEBUG:numba.byteflow:bytecode dump:
0 NOP(arg=None, lineno=10)
2 LOAD_GLOBAL(arg=0, lineno=10)
4 LOAD_CONST(arg=1, lineno=10)
6 LOAD_FAST(arg=2, lineno=10)
...
I've tried turning off the debugging messages using @jit(debug=False) and os.environ['NUMBA_DEBUG']='0', but neither of these seem to be the proper way of doing this. Does anybody have experience with this, and might you lend me a hand?