##// END OF EJS Templates
Show bumplimit bar for threads. Added board logo to the authors page.
Show bumplimit bar for threads. Added board logo to the authors page.

File last commit:

r197:4ac7d8f0 default
r281:b5bf6984 default
Show More
profiler.py
23 lines | 872 B | text/x-python | PythonLexer
import sys
import cProfile
from cStringIO import StringIO
from django.conf import settings
import line_profiler
class ProfilerMiddleware(object):
def process_view(self, request, callback, callback_args, callback_kwargs):
if settings.DEBUG and 'prof' in request.GET:
self.profiler = line_profiler.LineProfiler()
self.profiler.add_function(callback)
self.profiler.enable()
args = (request,) + callback_args
return callback(*args, **callback_kwargs)
def process_response(self, request, response):
if settings.DEBUG and 'prof' in request.GET:
out = StringIO()
old_stdout, sys.stdout = sys.stdout, out
self.profiler.print_stats()
sys.stdout = old_stdout
response.content = '<pre>%s</pre>' % out.getvalue()
return response