A few days ago, one of my python apps stopped logging all messages passed to the logging.{error,warn,info,debug} methods. Is there any limit or cutoff point where an app will stop logging messages? I even made a simplified test script just to test logging:
import logging
print 'Content-Type: text/plain'
print ''
print 'OK!'
On the app in question, only the request line is shown, and no log is displayed:
[14/Dec/2011:14:19:30 -0800] "GET /hello HTTP/1.1" 200 73 - "Opera/9.80 (Macintosh; Intel Mac OS X 10.7.2; U; en) Presto/2.10.229 Version/11.60" "
app1.appspot.com"
However, if I deploy the same exact hello.py to another app, it logs without any issue:
[14/Dec/2011:14:26:33 -0800] "GET /hello HTTP/1.1" 200 72 - "Opera/9.80 (Macintosh; Intel Mac OS X 10.7.2; U; en) Presto/2.10.229 Version/11.60" "
app2.appspot.com"
I 2011-12-14 12:26:33.798
log test
Why would this happen for only one of my applications? Other applications log just fine in the admin console, but not this one.
Thank you...
J. Maurice