Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to write Eclipse plugin to hide logger statements

I have a lot of logger statements in code which makes it difficult to read. How can I hide these statements?

like image 556
Sumeet Jindal Avatar asked Nov 14 '22 05:11

Sumeet Jindal


1 Answers

Why don't you just change the log level in the application's logger configuration file? I doubt you would find an Eclipse plugin as console output plain text and the plugin won't know how your logger formats that text.

like image 110
Lawrence McAlpin Avatar answered Nov 16 '22 04:11

Lawrence McAlpin