Get rid of "[xx%]" percentage flood
dertom95 opened this issue · 1 comments
dertom95 commented
Is there a way to get rid of the percentage-output that floods the console?
My console looks like this making it hard to find the errors thrown....
INFO: You can change the colors for this console in the CDT build console settings.
=== Running SCons at 12/27/17 2:54 PM ====
Command line: /usr/bin/scons -u --silent --jobs=16 platform=x11
Enabling ALSA
Enabling PulseAudio
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
[ 0%]
marcelhuberfoo commented
Your build probably issues some ANSI-Control sequences which are not interpreted but somehow partially suppressed by the eclipse console (like carriage return). You might try installing ANSIConsole and see if it works as replacement to the default console.
You could check if your build allows to suppress printing progress information. This does not look like scons default progress output as it would by default just be printing dots. Check for a Progress(...) function call.