I'm having a tough time getting the logging on Appengine working. the statement
import logging
is flagged as an unrecognized import in my PyDev Appengine project. I suspected that this was just an Eclipse issue, so I tried calling
logging.debug("My debug statement")
which does not print anything out on the dev_appserver. I haven't seen anything here
http://code.google.com/appengine/docs/python/runtime.html#Logging
that is very helpful on the matter. Any advice is much appreciated.