Happy Happy
Happy Happy

Reputation: 61

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

Upvotes: 5

Views: 2736

Answers (2)

Moishe Lettvin
Moishe Lettvin

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

Martijn
Martijn

Reputation: 1620

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

Upvotes: 4

Related Questions