Reputation: 66787
i can use firepython to show log to firebug,
but how to show log in the localhost's log window ?
thanks
Upvotes: 0
Views: 737
Reputation: 1185
You can try this if it is python:
import logging
class yourHandler(webapp.RequestHandler):
.....
def get(self):
.....
# place this anywhere you want GAE log to show up in console
logging.info("Something happen here, the value is " + variable_name)
.....
Hopefully it helps.
Upvotes: 1