You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by me...@apache.org on 2018/04/10 08:23:38 UTC

[incubator-dubbo] branch master updated: Fix #1539, change log method (#1578)

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

mercyblitz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new d80a42c  Fix #1539, change log method (#1578)
d80a42c is described below

commit d80a42cc69d16d3cb3391ba9f5ec2cc64436839f
Author: Jerrick Zhu <di...@gmail.com>
AuthorDate: Tue Apr 10 16:23:27 2018 +0800

    Fix #1539, change log method (#1578)
---
 .../alibaba/dubbo/rpc/cluster/support/wrapper/MockClusterInvoker.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dubbo-cluster/src/main/java/com/alibaba/dubbo/rpc/cluster/support/wrapper/MockClusterInvoker.java b/dubbo-cluster/src/main/java/com/alibaba/dubbo/rpc/cluster/support/wrapper/MockClusterInvoker.java
index 0a038c7..0269c2b 100644
--- a/dubbo-cluster/src/main/java/com/alibaba/dubbo/rpc/cluster/support/wrapper/MockClusterInvoker.java
+++ b/dubbo-cluster/src/main/java/com/alibaba/dubbo/rpc/cluster/support/wrapper/MockClusterInvoker.java
@@ -83,7 +83,7 @@ public class MockClusterInvoker<T> implements Invoker<T> {
                     throw e;
                 } else {
                     if (logger.isWarnEnabled()) {
-                        logger.info("fail-mock: " + invocation.getMethodName() + " fail-mock enabled , url : " + directory.getUrl(), e);
+                        logger.warn("fail-mock: " + invocation.getMethodName() + " fail-mock enabled , url : " + directory.getUrl(), e);
                     }
                     result = doMockInvoke(invocation, e);
                 }

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