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

