Dear App Engine Gurus,
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 'calling logging.info()'
logging.info(u'log test')
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
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-appengine/-/HE8pK8HeU1cJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.