[slf4j-user] How to use Debug....
Setumadhav Kulkarni
sekulkar at tibco.com
Thu Oct 18 08:01:53 CEST 2007
You will have to set the debug level in your orperryies file to debug. I suspect it is set to info right now.
Thanks and Regards,
Setu
-----------------------------------
setu at tibco.com
off: +91.20.30212111
mob: +91.9960692038
----- Original Message -----
From: user-bounces at slf4j.org <user-bounces at slf4j.org>
To: user at slf4j.org <user at slf4j.org>
Sent: Wed Oct 17 22:32:18 2007
Subject: [slf4j-user] How to use Debug....
This is my testing code:
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class Wombat {
final Logger logger = LoggerFactory.getLogger(Wombat.class);
Integer t;
Integer oldT;
public void setTemperature(Integer temperature) {
oldT = t;
t = temperature;
logger.debug("Temperature set to {}. Old temperature was {}.", t, oldT);
System.out.println(logger.isDebugEnabled());
if (temperature.intValue() > 50) {
logger.info("Temperature has risen above 50 degrees.");
}
}
public static void main(String[] args) {
Wombat wombat = new Wombat();
wombat.setTemperature(1);
wombat.setTemperature(55);
}
}
Sadly, the output only have the information with log.info, nothing about logger.debug, and the output of (logger.isDebugEnabled()) is also false, can anyone tell me how to use debug??? Thanks a lot!@
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://qos.ch/pipermail/slf4j-user/attachments/20071017/aa77b040/attachment.htm>
More information about the slf4j-user
mailing list