From e558eb26ffebb2b11785823538061d541f3cc88d Mon Sep 17 00:00:00 2001 From: Alastair Tse Date: Fri, 3 Nov 2006 10:38:18 +0000 Subject: [PATCH] [XEND] Silence Xen API debugging messages. Signed-off-by: Alastair Tse --- tools/python/xen/xend/XendAPI.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tools/python/xen/xend/XendAPI.py b/tools/python/xen/xend/XendAPI.py index 8cdb553d87..1cdbbf3c22 100644 --- a/tools/python/xen/xend/XendAPI.py +++ b/tools/python/xen/xend/XendAPI.py @@ -309,7 +309,8 @@ class XendAPI: getter.api = '%s.get_%s' % (cls, attr_name) setattr(XendAPI, getter_name, getter) except AttributeError: - log.warn("API call: %s not found" % getter_name) + pass + #log.warn("API call: %s not found" % getter_name) # wrap validators around writable class attrributes for attr_name in rw_attrs + self.Base_attr_rw: @@ -321,7 +322,8 @@ class XendAPI: setter.api = '%s.set_%s' % (cls, attr_name) setattr(XendAPI, setter_name, setter) except AttributeError: - log.warn("API call: %s not found" % setter_name) + pass + #log.warn("API call: %s not found" % setter_name) # wrap validators around methods for method_name in methods + self.Base_methods: @@ -333,7 +335,8 @@ class XendAPI: method.api = '%s.%s' % (cls, method_name) setattr(XendAPI, method_full_name, method) except AttributeError: - log.warn('API call: %s not found' % method_full_name) + pass + #log.warn('API call: %s not found' % method_full_name) # wrap validators around class functions for func_name in funcs + self.Base_funcs: @@ -344,7 +347,8 @@ class XendAPI: method.api = '%s.%s' % (cls, func_name) setattr(XendAPI, func_full_name, method) except AttributeError: - log.warn('API call: %s not found' % func_full_name) + pass + #log.warn('API call: %s not found' % func_full_name) Base_attr_ro = ['uuid'] -- 2.30.2