Skip to content

Instantly share code, notes, and snippets.

View jmsalcido's full-sized avatar
🇲🇽
Welcome

Jose Salcido jmsalcido

🇲🇽
Welcome
View GitHub Profile
@aaugustin
aaugustin / gist:2351479
Created April 10, 2012 13:44
Django: log all database queries in the console
import logging
logger = logging.getLogger('django.db.backends')
logger.setLevel(logging.DEBUG)
logger.addHandler(logging.StreamHandler())