View debug logs in a local instance of App Engine

The AppEngine tutorial http://code.google.com/appengine/docs/java/gettingstarted/usingjsps.html assumes that the debug logs created by java.util.logging.Logger can be seen in the admin console.

However, I do not see the log information from the admin console for the local instance in http: // localhost: 8888 / _ah / admin

Is there a way to see the debug log in local development?

thank

+5
source share
2 answers

I see that they appear in the terminal where I start the development server.

+4
source

You can install:

.level = ALL

logging.properties. . http://code.google.com/appengine/docs/java/runtime.html#Logging , .

+2

All Articles