Friday, 13 April 2012

Enable logging for java application in Google App Engine in order to use console

Configuring java.util.logging in appengine-web.xml is not enough.
You have to specify a log level for your package. For example:

/war/WEB-INF/logging.properties
# Set the default logging level for all loggers to WARNING
.level = WARNING
com.rudakovsky.smoke.server.level = INFO

No comments:

Post a Comment