I'm working on a tool for interacting with git. One of the problems I'm 
running into is that some of the calls which are making use of git are slow 
and I want to figure out which calls are causing the trouble. When I try 
and enable the profiler (web.profiler) using:

if __name__ == "__main__":
    app = web.application(urls, globals(),web.reloader)
    app.run(web.profiler)
 
There never seems to be any output produced by this. Is there something I 
need to do in my handler to make it show the profiling data? I thought this 
was just dumped into the html output? I'm using genshi templates for some 
of my handlers and dumping raw json data (return json.dumps(variable)) for 
others... but I don't see any sign of the profiler output.

What am I doing wrong?

Thanks,

Ben

-- 
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/webpy/-/ozfdLcvAZ4sJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/webpy?hl=en.

Reply via email to