zjm1126
zjm1126

Reputation: 66787

how to show log in google-app-engine's log window

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

Answers (1)

Samuel Chandra
Samuel Chandra

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

Related Questions