I'm just getting started on building a Python app for Google App Engine. In the localhost environment (on a Mac)
I'm trying to send debug info to the GoogleAppEngineLauncher Log Console via logging.debug()
, but it isn't showing up. However, anything sent through, say, logging.info()
or logging.error()
does show up. I've tried a logging.basicConfig(level=logging.DEBUG)
before the logging.debug()
, but to no avail.
What am I missing?