Search
Clear search
Close search
Main menu
Google apps
Groups
Sign in
Groups
Google App Engine
Conversations
Labels
About
Send feedback
Help
print debug info to the console.
683 views
Skip to first unread message
detz
unread,
Apr 9, 2008, 2:36:27 AM
4/9/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google App Engine
How can I dump simple text to the console window for simple debugging?
Sridhar Ratnakumar
unread,
Apr 9, 2008, 2:48:09 AM
4/9/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google App Engine
On Apr 8, 7:36 pm, detz <
ryandet...@gmail.com
> wrote:
> How can I dump simple text to the console window for simple debugging?
There are two ways:
1. quick and dirty:
import sys
print >>sys.stderr, "blah blah blah"
2. recommended:
http://docs.python.org/lib/module-logging.html
Cheers,
Sridhar
jchris
unread,
Apr 9, 2008, 2:53:24 AM
4/9/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google App Engine
if you are logging, you need to call
logging.info
(or else set the log
level of your dev server to debug with the --debug flag)
ma...@google.com
unread,
Apr 9, 2008, 6:26:40 PM
4/9/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google App Engine
The webapp framework also supports a debug=True statement that will
display your stack trace in the browser.
Please see the following page of our documentation for how to
implement this:
http://code.google.com/appengine/docs/webapp/running.html
-Marzia
Reply all
Reply to author
Forward
0 new messages