Re: [slf4j-user] How to use Debug....

2007-10-19 Thread Jipeng Tan
Is that mean I cannot not use logger.debug in slf4j-simple? On 10/19/07, Ceki Gulcu <[EMAIL PROTECTED]> wrote: > > OK. It drops log requests of level DEBUG but prints INFO and above on the > console. The slf4j-simple binding cannot be configured. > > Jipeng Tan wrote: > > slf4j-simple; > > > >

Re: [slf4j-user] How to use Debug....

2007-10-19 Thread Ceki Gulcu
OK. It drops log requests of level DEBUG but prints INFO and above on the console. The slf4j-simple binding cannot be configured. Jipeng Tan wrote: > slf4j-simple; > > On 10/19/07, *Ceki Gulcu* <[EMAIL PROTECTED] > > wrote: > > Hello, > > Which slf4j bind

Re: [slf4j-user] How to use Debug....

2007-10-19 Thread Maarten Bosteels
well, slf4j-simple is eeuh ...simple. from the javadoc: A simple (and direct) implementation that logs messages of level INFO or higher on the console (System.err). I think your best option is to switch to log4j or logback. regards Maarten On 10/19/07, Jipeng Tan <[EMAIL PROTECTED]> wrote: > >

Re: [slf4j-user] How to use Debug....

2007-10-19 Thread Jipeng Tan
Any suggestion about how to set Debug is Eable? On 10/19/07, Ceki Gulcu <[EMAIL PROTECTED]> wrote: > > Hello, > > Which slf4j binding are you using? Is it slf4j-simple? > > Jipeng Tan wrote: > [snip] > > > Sadly, the output only have the information with log.info > > , nothing abo

Re: [slf4j-user] How to use Debug....

2007-10-19 Thread Jipeng Tan
slf4j-simple; On 10/19/07, Ceki Gulcu <[EMAIL PROTECTED]> wrote: > > Hello, > > Which slf4j binding are you using? Is it slf4j-simple? > > Jipeng Tan wrote: > [snip] > > > Sadly, the output only have the information with log.info > > , nothing about logger.debug, and the outp

Re: [slf4j-user] How to use Debug....

2007-10-19 Thread Ceki Gulcu
Hello, Which slf4j binding are you using? Is it slf4j-simple? Jipeng Tan wrote: [snip] > 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 > debu

Re: [slf4j-user] basic MDC support for java.util.logging

2007-10-19 Thread Ceki Gulcu
Hi Maarteen, Comments inline. Maarten Bosteels wrote: > Hello Ceki, > > I started coding a BasicMDCAdapter that could be used by java.util.logging > Had a look at the log4j MDC implementation and also at LogbackMDCAdapter > code. > > Currently my implementation is roughly the same as the