1

In Eclipse editor I want to be able to quickly see System.out.println statements from other statements. Is there a way to give them a completely different color so that I could quickly spot them when I see my code? for ex all the System.out.println statements are in all blue color?

P.S. I'm not asking how to color the output but the statement itself.

Houssam Badri
  • 2,441
  • 3
  • 29
  • 60
samsamara
  • 4,630
  • 7
  • 36
  • 66

1 Answers1

1

Have System.out.println() statements in a different color in eclipse?

No, unfortunately it is not possible.

Furthermore using System.out.println() and System.err.println() together is not allways a good idea. System.err has higher priority than System.out. So the order of output will be quit confusing.

Eclipse is a highly pluginable IDE. My suggestion is to use Grep Console, so you can use some rules (regex) to color your output.

alex
  • 8,904
  • 6
  • 49
  • 75