Warning
This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
Source code for galaxy.web.framework.middleware.sqldebug
"""
Per-request SQL debugging middleware.
"""
import logging
log = logging.getLogger(__name__)
[docs]class SQLDebugMiddleware(object):
[docs] def __init__(self, application, galaxy, config=None):
#: the wrapped webapp
self.application = application
def __call__(self, environ, start_response):
query_string = environ.get('QUERY_STRING')
if "sql_debug=1" in query_string:
import galaxy.app
if galaxy.app.app.model.thread_local_log:
galaxy.app.app.model.thread_local_log.log = True
return self.application(environ, start_response)