G
gwoodhouse
Hello all,
I have a question about the JULI logging system that I’ve been unable
to answer for several months now.
I'm using a tomcat server (5.5) to run a web application, inside this
application there are many different logging methods within many
different classes spanning many namespaces. The java code can be
summed up in this example:
package uk.co.graeme.layout.element.register;
import java.util.logging.Logger;
public class ExampleClass
{
private static Logger LOG =
Logger.getLogger(ExampleClass.class.getName());
public Boolean evaluate(String a, String b)
{
try
{
if(a.equalsIgnoreCase(b)) { return true; }
else { return false; }
} catch (Exception e) {
LOG.info ("An exception was thrown");
}
return false;
}
}
Unfortunately this web application has been shipped to me a
logging.properties file which isn't far removed from the default. You
can see the logging file at this URL underneath the String "Example
logging.properties file to be placed in common/classes:":
http://tomcat.apache.org/tomcat-5.5-doc/logging.html
For various reasons i cannot change the properties file.
Now each of the different handlers specified in the example are
logging, I can tell this by the fact that log files are being created
and written to (catalina.log, localhost.log, etc.).
My question is, from the above java code example, where would the
String "An exception was thrown" log to (and how can you tell this?)
Thank you in advance. I'm sorry to ask what seems like a very simple
question but looking through documentation has been surprisingly
unhelpful.
Graeme
I have a question about the JULI logging system that I’ve been unable
to answer for several months now.
I'm using a tomcat server (5.5) to run a web application, inside this
application there are many different logging methods within many
different classes spanning many namespaces. The java code can be
summed up in this example:
package uk.co.graeme.layout.element.register;
import java.util.logging.Logger;
public class ExampleClass
{
private static Logger LOG =
Logger.getLogger(ExampleClass.class.getName());
public Boolean evaluate(String a, String b)
{
try
{
if(a.equalsIgnoreCase(b)) { return true; }
else { return false; }
} catch (Exception e) {
LOG.info ("An exception was thrown");
}
return false;
}
}
Unfortunately this web application has been shipped to me a
logging.properties file which isn't far removed from the default. You
can see the logging file at this URL underneath the String "Example
logging.properties file to be placed in common/classes:":
http://tomcat.apache.org/tomcat-5.5-doc/logging.html
For various reasons i cannot change the properties file.
Now each of the different handlers specified in the example are
logging, I can tell this by the fact that log files are being created
and written to (catalina.log, localhost.log, etc.).
My question is, from the above java code example, where would the
String "An exception was thrown" log to (and how can you tell this?)
Thank you in advance. I'm sorry to ask what seems like a very simple
question but looking through documentation has been surprisingly
unhelpful.
Graeme