Author: boisvert
Date: Tue Aug 22 15:45:07 2006
New Revision: 433787
URL: http://svn.apache.org/viewvc?rev=433787&view=rev
Log:
Cosmetic debug fixes
Modified:
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java
incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeService.java
Modified:
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java?rev=433787&r1=433786&r2=433787&view=diff
==============================================================================
---
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java
(original)
+++
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java
Tue Aug 22 15:45:07 2006
@@ -389,8 +389,8 @@
final VariableInstance lval = _scopeFrame.resolve(ocopy.to
.getVariable());
if (__log.isDebugEnabled())
- __log.debug("ASSIGN Writing variable" + lval.declaration.name +
- " value " + DOMUtils.domToString(lvalue));
+ __log.debug("ASSIGN Writing variable '" + lval.declaration.name +
+ "' value '" + DOMUtils.domToString(lvalue) +"'");
napi.commitChanges(lval, lvalue);
}
}
Modified:
incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeService.java
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeService.java?rev=433787&r1=433786&r2=433787&view=diff
==============================================================================
--- incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeService.java
(original)
+++ incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeService.java
Tue Aug 22 15:45:07 2006
@@ -163,7 +163,7 @@
public void onResponse(MyRoleMessageExchange mex) {
javax.jbi.messaging.MessageExchange jbiMex =
_jbiMexTracker.consume(mex.getClientId());
if (jbiMex == null) {
- __log.warn("Ingorning unknown async reply: " + mex);
+ __log.warn("Ignoring unknown async reply: " + mex);
return;
}