logging error for now instead of throwing exception
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 4 Jan 2008 22:13:33 +0000 (22:13 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 4 Jan 2008 22:13:33 +0000 (22:13 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@8323 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/python/oils/utils/idl.py

index 0a4428a..6c91aaf 100644 (file)
@@ -164,8 +164,8 @@ class IDLClass(object):
             return [f for f in self.fields if f.name == field_name][0]
         except:
             msg = "No field '%s' in IDL class '%s'" % (field_name, self.name)
-            #osrf.log.log_error(msg)
-            raise IDLException(msg)
+            osrf.log.log_error(msg)
+            #raise IDLException(msg)
 
 class IDLField(object):
     def __init__(self, idl_class, **kwargs):