summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/modules/policy-logging/src/main/java/org/apache/tuscany/sca/policy/logging/jdk/JDKLoggingPolicyInterceptor.java
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--branches/sca-java-1.x/modules/policy-logging/src/main/java/org/apache/tuscany/sca/policy/logging/jdk/JDKLoggingPolicyInterceptor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/branches/sca-java-1.x/modules/policy-logging/src/main/java/org/apache/tuscany/sca/policy/logging/jdk/JDKLoggingPolicyInterceptor.java b/branches/sca-java-1.x/modules/policy-logging/src/main/java/org/apache/tuscany/sca/policy/logging/jdk/JDKLoggingPolicyInterceptor.java
index 3f1b15075f..58a6d21ee7 100644
--- a/branches/sca-java-1.x/modules/policy-logging/src/main/java/org/apache/tuscany/sca/policy/logging/jdk/JDKLoggingPolicyInterceptor.java
+++ b/branches/sca-java-1.x/modules/policy-logging/src/main/java/org/apache/tuscany/sca/policy/logging/jdk/JDKLoggingPolicyInterceptor.java
@@ -101,7 +101,7 @@ public class JDKLoggingPolicyInterceptor implements Interceptor {
}
Object[] logParams = new Object[] {operation.getName(), sb.toString()};
- logger.logp(Level.FINER, context, "", "Invoking operation {0} with arguments ({1})", logParams);
+ logger.logp(Level.FINER, context, "", "Invoking operation {0} with arguments {1}", logParams);
}
Message responseMsg = null;
@@ -115,7 +115,7 @@ public class JDKLoggingPolicyInterceptor implements Interceptor {
if (responseMsg != null) {
Object[] logParams = new Object[] {operation.getName(), responseMsg.getBody()};
logger.logp(Level.INFO, context, "", "Returned from operation - " + operation.getName());
- logger.logp(Level.FINER, context, "", "Returning from operation {0} with return value ({1})", logParams);
+ logger.logp(Level.FINER, context, "", "Returning from operation {0} with return value {1}", logParams);
}
}
}