[appengine-java] Re: A newbie question about logging using java.util.logging

2009-11-12 Thread Zaske
Yes, I tried filtering info - and did not get the messsage. In the end I changed the file to look like: .level = FINEST # Set the default logging level for ORM, specifically, to WARNING DataNucleus.JDO.level=WARNING DataNucleus.Persistence.level=WARNING DataNucleus.Cache.level=WARNING DataNucleus

[appengine-java] Re: A newbie question about logging using java.util.logging

2009-11-13 Thread Zaske
Thanks Toby! It did the trick! Here is my complete logging.properties file: .level = WARN # Set the default logging level for ORM, specifically, to WARNING DataNucleus.JDO.level=WARNING DataNucleus.Persistence.level=WARNING DataNucleus.Cache.level=WARNING DataNucleus.MetaData.level=WARNING DataNu

Re: [appengine-java] Re: A newbie question about logging using java.util.logging

2009-11-12 Thread Toby Reyelts
Did you try com.zas.test.level=INFO instead of com.zas.test=INFO ? On Fri, Nov 13, 2009 at 1:22 AM, Zaske wrote: > Yes, I tried filtering info - and did not get the messsage. > In the end I changed the file to look like: > > .level = FINEST > > # Set the default logging level for ORM, specifical

Re: [appengine-java] Re: A newbie question about logging using java.util.logging

2009-11-13 Thread Rusty Wright
Further proof, for me at least, that the properties file format is more confusing than the xml file format. I use log4j's successor, logback, and I'm so glad that it doesn't support the properties file format for configuration. Zaske wrote: > Thanks Toby! > It did the trick! > Here is my compl