Author: mriou
Date: Thu Oct 5 08:25:53 2006
New Revision: 453268
URL: http://svn.apache.org/viewvc?view=rev&rev=453268
Log:
Debug logging is far enough for this.
Modified:
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelRuntimeContextImpl.java
Modified:
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelRuntimeContextImpl.java
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelRuntimeContextImpl.java?view=diff&rev=453268&r1=453267&r2=453268
==============================================================================
---
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelRuntimeContextImpl.java
(original)
+++
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelRuntimeContextImpl.java
Thu Oct 5 08:25:53 2006
@@ -950,7 +950,10 @@
dao.setProperty(property.name.toString(), val);
}
} catch (FaultException e) {
- __log.error("Error attempting to extract property '"
+ property.toString() + "'", e);
+ // This will fail as we're basically trying to extract
properties on all
+ // received messages for optimization purposes.
+ __log.debug("Couldn't extract property '" +
property.toString()
+ + "' in property pre-extraction.", e);
}
}
}