This is an automated email from the ASF dual-hosted git repository.

liubao pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-java-chassis.git


The following commit(s) were added to refs/heads/master by this push:
     new bb8c7ff  [SCB-593] change log level of InvokerUtils.innerSyncInvoke()
bb8c7ff is described below

commit bb8c7ffc4eb069c2118941291acf1ed884a56b83
Author: yaohaishi <yaohai...@huawei.com>
AuthorDate: Fri May 18 14:44:32 2018 +0800

    [SCB-593] change log level of InvokerUtils.innerSyncInvoke()
---
 .../java/org/apache/servicecomb/common/javassist/CtTypeJavaType.java    | 2 ++
 .../org/apache/servicecomb/core/provider/consumer/InvokerUtils.java     | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/common/common-javassist/src/main/java/org/apache/servicecomb/common/javassist/CtTypeJavaType.java
 
b/common/common-javassist/src/main/java/org/apache/servicecomb/common/javassist/CtTypeJavaType.java
index 6e03bd9..1ef4cec 100644
--- 
a/common/common-javassist/src/main/java/org/apache/servicecomb/common/javassist/CtTypeJavaType.java
+++ 
b/common/common-javassist/src/main/java/org/apache/servicecomb/common/javassist/CtTypeJavaType.java
@@ -23,6 +23,8 @@ import com.fasterxml.jackson.databind.type.SimpleType;
  * pending create class from CtClass to support recursive dependency class
  */
 public class CtTypeJavaType extends SimpleType {
+  private static final long serialVersionUID = 301147079248607138L;
+
   private CtType type;
 
   public CtTypeJavaType(CtType type) {
diff --git 
a/core/src/main/java/org/apache/servicecomb/core/provider/consumer/InvokerUtils.java
 
b/core/src/main/java/org/apache/servicecomb/core/provider/consumer/InvokerUtils.java
index d617bd8..a0ed21b 100644
--- 
a/core/src/main/java/org/apache/servicecomb/core/provider/consumer/InvokerUtils.java
+++ 
b/core/src/main/java/org/apache/servicecomb/core/provider/consumer/InvokerUtils.java
@@ -73,7 +73,7 @@ public final class InvokerUtils {
     } catch (Throwable e) {
       String msg =
           String.format("invoke failed, %s", 
invocation.getOperationMeta().getMicroserviceQualifiedName());
-      LOGGER.debug(msg, e);
+      LOGGER.error(msg, e);
 
       Response response = Response.createConsumerFail(e);
       invocation.onFinish(response);

-- 
To stop receiving notification emails like this one, please contact
liu...@apache.org.

Reply via email to