Commit f54480d5 authored by Kevin Deldycke's avatar Kevin Deldycke

Decrease severity of Log message


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@4531 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 8b4419a7
...@@ -195,18 +195,18 @@ class BaobabConduit(ERP5Conduit): ...@@ -195,18 +195,18 @@ class BaobabConduit(ERP5Conduit):
raise raise
except: except:
LOG( 'BaobabConduit:' LOG( 'BaobabConduit:'
, 100 , 0
, "parent object of '%s' not found in %s" % (source_portal_type, parent_object_path) , "'%s' parent object not found in %s" % (source_portal_type, search_folder)
) )
if parent_object == None: if parent_object == None:
LOG( 'BaobabConduit:' LOG( 'BaobabConduit:'
, 100 , 100
, "parent object of '%s' not found !" % (source_portal_type) , "'%s' parent object not found !" % (source_portal_type)
) )
else: else:
LOG( 'BaobabConduit:' LOG( 'BaobabConduit:'
, 0 , 0
, "parent object of '%s' found (%s)" % (source_portal_type, repr(parent_object)) , "'%s' parent object found at %s" % (source_portal_type, repr(parent_object))
) )
return parent_object return parent_object
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment