From 8d89730f5e157cbb33191ccf851c71c068ce91f5 Mon Sep 17 00:00:00 2001 From: erickson Date: Fri, 4 Jan 2008 22:12:38 +0000 Subject: [PATCH] logging error for now instead of throwing exception git-svn-id: svn://svn.open-ils.org/ILS/trunk@8322 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/python/oils/utils/idl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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): -- 2.11.0