[appengine-java] Re: Logging in JUnit tests

2009-12-13 Thread a.maza
I just checked the DN docs and was able to answer this (dumb) question myself. DN's logging can be configured using its logging categories. On 13 Dez., 11:34, "a.maza" wrote: > thanks for your help. using logback for everything through the slf4j > bridges is really an improvement. > > I just a s

[appengine-java] Re: Logging in JUnit tests

2009-12-13 Thread a.maza
thanks for your help. using logback for everything through the slf4j bridges is really an improvement. I just a slight problem remaining: now datanucleus logs everything through org.datanucleus.util.Log4JLogger.debug.58: ... which does not allow for a fine-grained configuration. has anybody exp

Re: [appengine-java] Re: Logging in JUnit tests

2009-12-12 Thread Rusty Wright
I'm using slf4j and logback, and the slf4j adapters for jakarta commons logging etc., that re-route things through slf4j. Here's my maven "dependency pom" so you can see what I'm using. After that is my logback.xml file (everything goes to the console). If you're using maven, be sure and do a

[appengine-java] Re: Logging in JUnit tests

2009-12-12 Thread Philippe Marschall
On Dec 12, 2:50 pm, "a.maza" wrote: > Hello, > > I have currently some troubles with logging in junit tests. In > general, I have the following questions: > > -) According to the manuals, I could basically use any log framework > which logs to System.out and System.err, respectively (e.g., log4j