Getting logging.debug() to work on Google App Engine/Python

Posted by brainjam on Stack Overflow See other posts from Stack Overflow or by brainjam
Published on 2010-06-06T03:01:10Z Indexed on 2010/06/06 3:02 UTC
Read the original article Hit count: 288

I'm just getting started on building a Python app for Google App Engine. In the localhost environment 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?

© Stack Overflow or respective owner

Related posts about python

Related posts about beginner