Global logger level

Is it possible to set the logLevel of all loggers to the same "super logger" level ?

instead of setting the level on each logger myself ?



All those info messages are kinda annoying when you only care about warnings or specific things you add yourself.



Hellmaster.

Logger.getLogger("").setLevel(Level.WARNING);

Nice  works perfect

Thanks



Hellmaster.

Thank You!!!



A Lot!!!