I originally used log4j on my webapp running on GAE, but I migrated to java.util.logging. Perhaps you can use my configuration as an example.
Here are the contents of my WEB-INF directory on my open source project on google code<http://code.google.com/p/addama/source/browse/#svn%2Ftags%2F2.1%2Fgae-svcs%2Faddama-registry%2Fsrc%2Fmain%2Fwebapp%2FWEB-INF>. Take a look at the *web.xml* for log4j configuration using Spring Framework. The logging.properties file actually controls the java.util.logging API, but I still have log4j.xml in there. Also, here's an example using java.util.logging API: RegistryController.java<http://addama.googlecode.com/svn/tags/2.1/gae-svcs/addama-registry/src/main/java/org/systemsbiology/addama/coresvcs/gae/controllers/RegistryController.java> Hope this helps! -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/V0ZeonAIxogJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
