Is there a way to colorize parts of logs in the eclipse console. I know I could send to error and standard streams and color them differently but I'm more looking someting in the lines of ANSI escape codes (or anyother, HTML ?) where I could embed the colors in the string to have it colored in the logs.

It sure would help making the important bits stand out without resorting to weird layout, rather keep the layout to the log4j setups

here is an example of what I am looking for :

[INFO ] The grid is complete ....... false

where the bold parts would be in blue, this coloring can be controlled by the application to an extent. like so (tags are conceptual and arbitrary, but you get the idea):

log.info(String.format("The grid is complete ....... <blue>%s</blue>", isComplete ));


On a more general note it is the ability to embed meta information in the logs to help the presentation of these logs. Much like we tag web pages content to help the presentation of the information by CSS.

link|improve this question

feedback

6 Answers

up vote 23 down vote accepted

have a try with this Eclipse Plugin: Grep Console

[UPDATE]: As pointed out by commenters: When installing Grep Console in the currently last version of Eclipse, you need to uncheck 'Group items by category' in the Install dialog to see the available items.

[UPDATE 2]: As pointed out by azdev, to get proper highlighting

entering just literal strings doesn't work. To get a line to be colored, you have to enclose the string in .* on either side, like so: .*ERROR.*

link|improve this answer
grep console is perfect, wish you could save presets though. it would be nice if you could replace the text too (instead of just matching it), that way you could strip out color codes and apply them at the same time. – aepurniet Sep 30 '09 at 8:52
1  
The plugin doesn't seam to work with latest Eclipse (Helios). – Sorin Sbarnea Sep 21 '11 at 9:20
4  
Note: When installing Grep Console, you need to uncheck 'Group items by category' in the Install dialog to see the available items. – azdev Sep 23 '11 at 17:17
1  
@Benjamin Seiller i updated the answer. – Msaleh Dec 6 '11 at 16:22
2  
Another thing that's a bit tricky about this plugin: entering just literal strings doesn't work. To get a line to be colored, you have to enclose the string in .* on either side, like so: .*ERROR.* – azdev Dec 13 '11 at 18:27
show 8 more comments
feedback

We use the Ganymede Eclipse plugin where I work, and it works well.

http://sourceforge.net/projects/ganymede/

"A log4j plugin to Eclipse that works similar to chainsaw (SocketServer). Includes color, filtering, detailed information, and saves settings."

link|improve this answer
This is a great plugin too bad they don't have one for europa :( – mugafuga Oct 24 '08 at 15:39
6  
Mighty confusing to have an Eclipse plugin called "ganymede". – JesperE Jan 7 '10 at 9:35
feedback

What about use Logback and its property converter and log everything in log4j, that may allow you see the differents levels on differents colors.

Good luck!

EDIT: the eclipse plugin

link|improve this answer
This is AWESOME! – Hendy Irawan Jul 13 '11 at 17:01
feedback

Read about the org.eclipse.ui.console.consolePatternMatchListeners extension point.

link|improve this answer
thats the right way to do it, but i think the poster was hoping some one had done this for ansi escape sequences or html color codes. – aepurniet Sep 30 '09 at 5:08
feedback

You may consider trying Apache Chainsaw (http://logging.apache.org/chainsaw/index.html) if you are already working with log4j. Lets you define colors and filtern and works with (nearly) zero configuration.

link|improve this answer
I have tried it a long time ago, it was very helpfull though I do not know if it can help me in this case. I expect it to enable me more granularity in how rows are colored, but I want more... I will try it tomorrow. – Newtopian Oct 24 '08 at 15:09
feedback

I've used this plugin before, it lets you colourize lines of the log based on customized regex.

For example, when I was using it, any lines with the words error would be red, warning would be orange, info would be blue... etc.

Since it's regex, you could do anything. Set it up to make the line green whenever it starts with ">>>" and then prepend your message string with ">>>".

http://sourceforge.net/projects/logfiletools

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.