using Logger

Hello

I have many logs in different locations and different files by using something like:

Logger log = Logger.getLogger(this.getClass().getName();

..

public void myFunction{

...

log.info("this is log");

...

}

Now I want to turn off these logs . So I have to go to every place and comment out these logs or there is better way ? (so I can turn on and off in one place)

Thanks

suhu

[453 byte] By [suhua] at [2007-11-27 11:28:22]
# 1

> Now I want to turn off these logs .

Look into logging levels.

~

yawmarka at 2007-7-29 16:21:43 > top of Java-index,Java Essentials,New To Java...