From: erickson Date: Fri, 4 Jan 2008 22:12:38 +0000 (+0000) Subject: logging error for now instead of throwing exception X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=8d89730f5e157cbb33191ccf851c71c068ce91f5;p=Evergreen.git logging error for now instead of throwing exception git-svn-id: svn://svn.open-ils.org/ILS/trunk@8322 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/python/oils/utils/idl.py b/Open-ILS/src/python/oils/utils/idl.py index 0a4428a76a..6c91aafb70 100644 --- a/Open-ILS/src/python/oils/utils/idl.py +++ b/Open-ILS/src/python/oils/utils/idl.py @@ -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):