Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I see debug log in local App Engine instance

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

like image 753
Happy Happy Avatar asked Nov 22 '11 05:11

Happy Happy


2 Answers

I see them appearing in the terminal where I start the development server.

like image 182
Martijn Avatar answered Sep 20 '22 01:09

Martijn


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.

like image 32
Moishe Lettvin Avatar answered Sep 23 '22 01:09

Moishe Lettvin