Currently I have this output:
from django.db import connection
print connection.queries
Output: [{'time': '0.000', ...
I wanted to output to be like: [{'time': '0.000000', ...
Is it possible. If yes how? If not why not? Most of my SQL Queries get executed in 0.000 time frame. Basically I want to implement this feature so that when I set up my DEBUG True in settings.py and make necessary changes I want to be able to see the SQL Execution times of small time fraction also in my log.