Hi. I have some application which work at SDK but don't work at GAE.
The problem is that at dashboard->Logs i see only
01-14 06:53AM 19.040 / 500 2825ms 0ms-cpu 0kb
01-14 06:47AM 22.153 / 500 2018ms 0ms-cpu 0kb
01-14 06:47AM 22.153 / 5002018ms 0ms-cpu 0kb
And nothing else. At the begin of main.py i put
import logging
logging.info('start')
but there is no 'start' string in log. And another interesting detail.
Log says that request took 2825ms/2018ms/2018ms but 0ms-cpu. How it
can be? What does GAE do within 2000 ms? When i put in main.py
import logging
logging.info('start')
raise 'Error'
I has normal log:
#
I 01-14 06:57AM 05.015
start
#
E 01-14 06:57AM 05.042
/base/data/home/apps/gae-rp/1.330697721752694087/py_zimport.py:65:
DeprecationWarning: raising a string exception is deprecated
#
E 01-14 06:57AM 05.042
raise 'error'
#
E 01-14 06:57AM 05.042
error: None
Traceback (most recent call last):
File "/base/data/home/apps/gae-rp/1.330697721752694087/zwrcl.py",
line 34, in <module>
raise 'error'
I see my 'start' string.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
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
-~----------~----~----~----~------~----~------~--~---