Removing JUCE version line from logger output

I’m using JUCE 5.4.7 with Indie license.
I just noticed that when running one of the tutorials (Simple Synth Noise), as I run the application from the command line, I get also a line with the JUCE version:

JUCE v5.4.7
Preparing to play audio…
samplesPerBlockExpected = 512
sampleRate = 48000
Releasing audio resources

The first (bold) line was not specified by the code.
How can I disable this line?

JUCE version is only printed in DEBUG mode.

You can add JUCE_DISABLE_JUCE_VERSION_PRINTING=1 in the Extra Preprocessor Definitions section inside Projucer if you want to completely disable it.

Thanks