view pylons_app/lib/timerproxy.py @ 67:ffd9ff6e2f33

fixed name bug in create db script
author Marcin Kuzminski <marcin@python-blog.com>
date Sat, 10 Apr 2010 19:44:22 +0200
parents 3ada2f409c1c
children 0c22a870bb79
line wrap: on
line source

from sqlalchemy.interfaces import ConnectionProxy
import time
import logging
log = logging.getLogger(__name__)

class TimerProxy(ConnectionProxy):
    def cursor_execute(self, execute, cursor, statement, parameters, context, executemany):
        now = time.time()
        try:
            log.info(">>>>> STARTING QUERY >>>>>")
            return execute(cursor, statement, parameters, context)
        finally:
            total = time.time() - now
            log.info("Query: %s" % statement % parameters)
            log.info("<<<<< TOTAL TIME: %f <<<<<" % total)