You are not logged in.
I was wondering if there was a way to be able to bring up the web based shell on the webpage for debugging purposes? So far the only way I can bring it up if there is an error on the page.
Offline
Check Firebug. http://getfirebug.com/
Offline
not exactly what I was after. there is an interactive python shell embedded into pyramid for debugging purposes specific to the app. you can inspect variables etc which makes it very useful. I would like to access this without having to throw an error each time.
Offline
You probably want pdb or ipdb for interactive debugging and being able to continue the request. Maybe I'm not understanding the question. If you are asking about the web debugger, you can't launch it without interrupting the request and returning a response (ie. throwing an error).
Offline
Maybe I'm not understanding the question. If you are asking about the web debugger, you can't launch it without interrupting the request and returning a response (ie. throwing an error).
Yeah thats what I was hoping for. I guess I'll just throw an exception each time for now. I'm not really doing any major debugging just wish to inspect variables at runtime etc. Thanks.
Offline