Debugging web apps - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T12:34:45Zhttp://stackoverflow.com/feeds/question/557927http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/557927/debugging-web-apps6Debugging web appsBaltimark2009-02-17T17:43:59Z2009-02-18T14:08:30Z
<p>I've gotten pretty used to step-through debuggers over the years, both in builder, and using the pydev debugger in Eclipse. </p>
<p>Currently, I'm making something in Python and running it on Google App Engine, and I should add that I'm pretty new to developing any real web app; I've never really done much beyond editing HTML code.</p>
<p>So, I'm running Google's dev_appserver and viewing my work at <a href="http://localhost" rel="nofollow">http://localhost</a>, dig, and right now, the only tool I'm using to identify issues is PMD (poor man's debugger). . .basically writing things to the html pages to see the value of local variables. </p>
<p>Is there a better technique for dealing with this? </p>
http://stackoverflow.com/questions/557927/debugging-web-apps/557938#5579387Answer by Tomh for Debugging web appsTomh2009-02-17T17:47:05Z2009-02-17T17:47:05Z<p>The dev_appserver is just a python script, you can simply use the pydev debugger on that script with the proper arguments as far as I know.</p>
<p>Here is a very detailed guide on how to do that:</p>
<p><a href="http://www.ibm.com/developerworks/opensource/library/os-eclipse-mashup-google-pt1/index.html" rel="nofollow">http://www.ibm.com/developerworks/opensource/library/os-eclipse-mashup-google-pt1/index.html</a></p>
http://stackoverflow.com/questions/557927/debugging-web-apps/558065#5580652Answer by S.Lott for Debugging web appsS.Lott2009-02-17T18:13:26Z2009-02-17T18:13:26Z<p>"Is there a better technique for dealing with this?" Not really.</p>
<p>"step-through debuggers" are their own problem. They're a kind of mental crutch that make it easy to get something that looks like it works.</p>
<p>First, look at <a href="http://code.google.com/appengine/docs/python/tools/devserver.html#The_Development_Console" rel="nofollow">http://code.google.com/appengine/docs/python/tools/devserver.html#The_Development_Console</a> for something that might be helpful.</p>
<p>Second, note that <code>--debug</code> Prints verbose debugging messages to the console while running.</p>
<p>Finally, note that you'll need plenty of Python experience and Google AppEngine experience to write things like web applications. To get that experience, the <code>print</code> statement is really quite good. It shows you what's going on, and it encourages you to really understand what you <em>expect</em> or <em>intend</em> to happen. </p>
<p>Debuggers are passive. It devolves to writing random code, seeing what happens, making changes until it works. I've watched people do this.</p>
<p>Print statement is active. You have to plan what should happen, write code, and consider the results carefully to see if the plans worked out. If it doesn't do what you intended, you have to hypothesize and test your hypothesis. If it works, then you "understood" what was going on. Once you get the semantics of Python and the Google AppEngine, your understanding grows and this becomes really easy.</p>
http://stackoverflow.com/questions/557927/debugging-web-apps/558165#5581654Answer by MrTopf for Debugging web appsMrTopf2009-02-17T18:33:49Z2009-02-17T18:33:49Z<p>I would suggest to use logging statements instead of prints though as you can control them better. Python has a quite good logging library included.</p>
<p>For logging from Google App Engine to e.g. Firebug there is also some handy tool called <a href="http://appengine-cookbook.appspot.com/recipe/firepython-logger-console-inside-firebug/" rel="nofollow">FirePython</a>. This allows to log to the firebug console from within your Django or WSGI app (it's middleware).</p>
http://stackoverflow.com/questions/557927/debugging-web-apps/560779#5607790Answer by zgoda for Debugging web appszgoda2009-02-18T12:01:10Z2009-02-18T14:08:30Z<p>My debugging toolbox for GAE:</p>
<ul>
<li>standard Python logging as a substitute for <code>print</code> statements</li>
<li><a href="http://dev.pocoo.org/projects/werkzeug/wiki/UsingDebuggerWithAppEngine" rel="nofollow">Werkzeug debugger</a> if I do not want to go to the console log on each error (not everything works, most notably interactive interpreter session)</li>
<li>interactive console at <a href="http://localhost:8080/_ah/admin/interactive" rel="nofollow">http://localhost:8080/_ah/admin/interactive</a> (not as good as Django's <code>python manage.py shell</code> but still...)</li>
</ul>
<p>Symbolic debuggers are not so valued as elsewhere, possibly because Python's superior introspection and reflection mechanisms.</p>