Vladimir Mihailenco
Vladimir Mihailenco

Reputation: 3382

Django on Google App Engine: debug queries to datastore

What is the best way to get something similar to django-debug-toolbar working on Google App Engine? At least I want to log all GQL at my local development environment. I am using django-nonrel + djangoappengine + djangotoolbox.

I tried:

Upvotes: 2

Views: 691

Answers (1)

Daniel Roseman
Daniel Roseman

Reputation: 599480

You need Appstats, which comes with the App Engine Python SDK.

Upvotes: 3

Related Questions