2010-05-19 16 views

Répondre

1

Vous pouvez essayer cette si elle est 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) 

    ..... 

Espérons que cela aide.