Reputation: 61
AppEngine tutorial http://code.google.com/appengine/docs/java/gettingstarted/usingjsps.html suggests that the debug logs generated by java.util.logging.Logger can be seen at admin console.
However I don't see the log information from admin console for local instance at http://localhost:8888/_ah/admin
Is there a way to see debug log when developing locally?
Thanks
Upvotes: 5
Views: 2736
Reputation: 8471
You can set:
.level = ALL
In your logging.properties file. See http://code.google.com/appengine/docs/java/runtime.html#Logging for info on how to set up this file.
Upvotes: 2
Reputation: 1620
I see them appearing in the terminal where I start the development server.
Upvotes: 4