[appengine-java] Re: Logging Levels....

2009-08-24 Thread Cliff Hill
I'm getting the impression I'm missing something ridiculously simple here. The logging levels I see access to (which show up in the log interface in the GAE dashboard) are: java.util.logger.Level.INFO -- Info java.util.logger.Level.WARNING -- Warning java.util.logger.Level.SEVERE -- Error But

[appengine-java] Re: Logging Levels....

2009-08-24 Thread Toby Reyelts
The mappings for java.util.logging levels to GAE log levels are: level = SEVERE - Error level = WARNING - Warn level = INFO - Info else Debug We reserve the Critical level for errors such as escaping ServletExceptions (e.g. errors that would cause 500s). So, for example, if you

[appengine-java] Re: Logging Levels....

2009-08-24 Thread Philippe Marschall
On Aug 24, 8:08 pm, Toby Reyelts to...@google.com wrote: The mappings for java.util.logging levels to GAE log levels are:     level = SEVERE - Error     level = WARNING - Warn     level = INFO - Info     else Debug We reserve the Critical level for errors such as escaping