I'm using Appstats as documented here:
http://code.google.com/appengine/docs/python/tools/appstats.html
It works fine, but every request now logs an info message like this:
Saved; key: appstats:039300, part: 65 bytes, full: 12926 bytes, overhead: 0.000 + 0.004; link: http://example.com/stats/details?time=1290733239309
Is there a way to disable the log messages, while leaving Appstats running?
Maybe I could just take my own copy of ext/appstats/recording.py and comment out the call to logging.info()? Or is there a better way?
Thanks.