Skip to content

Instantly share code, notes, and snippets.

@neoreids
Forked from aaugustin/gist:2351479
Created April 22, 2020 04:05
Show Gist options
  • Save neoreids/b54657028936e2774b03fc04e2241fcf to your computer and use it in GitHub Desktop.
Save neoreids/b54657028936e2774b03fc04e2241fcf to your computer and use it in GitHub Desktop.
Django: log all database queries in the console
import logging
logger = logging.getLogger('django.db.backends')
logger.setLevel(logging.DEBUG)
logger.addHandler(logging.StreamHandler())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment