logging http result status
authorerickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 31 Mar 2008 20:35:20 +0000 (20:35 +0000)
committererickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 31 Mar 2008 20:35:20 +0000 (20:35 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1295 9efc2488-bf62-4759-914b-345cdb29e865

src/python/osrf/http_translator.py

index 74ba953..d265cfb 100644 (file)
@@ -85,7 +85,9 @@ def child_init(req):
 def handler(req):
     ''' Create the translator and tell it to process the request. '''
     child_init(req)
-    return HTTPTranslator(req).process()
+    status = HTTPTranslator(req).process()
+    osrf.log.log_debug("translator call resulted in status %d" % int(status))
+    return status
 
 class HTTPTranslator(object):
     def __init__(self, apreq):