logger.log



I inherited a java application which is using the construct
"Logger.log" to print error/debug messages.

As an example, one line looks like this:

Logger.log("ClassName", "Method()", strMsg, e);



Also have these import statements at the top:

import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.net.*;
import java.util.*;


Where can I find out where the results of these messages go? Is there
an easier way to print debug-type messages?

Thanks.

Dennis Hancy
Eaton Corporation
Cleveland, OH

.