Since Google App Engine cannot create a log file due to the specifications, there is only a way to output the log to the console. Documentation
Import the python logging
module to output the log.
main.py
import logging
logging.getLogger().setLevel( logging.DEBUG )
logging.info('### info output ###')
logging.debug('### debug output ###')
How about something like this?
Recommended Posts