huyuechy closed pull request #2026: change the condition to determine the log 
level
URL: https://github.com/apache/incubator-dubbo/pull/2026
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

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 76450944ee..ebf738a646 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
@@ -69,7 +69,7 @@ public Result invoke(Invocation invocation) throws 
RpcException {
             //no mock
             result = this.invoker.invoke(invocation);
         } else if (value.startsWith("force")) {
-            if (logger.isWarnEnabled()) {
+            if (logger.isInfoEnabled()) {
                 logger.info("force-mock: " + invocation.getMethodName() + " 
force-mock enabled , url : " + directory.getUrl());
             }
             //force:direct mock
@@ -82,7 +82,7 @@ public Result invoke(Invocation invocation) throws 
RpcException {
                 if (e.isBiz()) {
                     throw e;
                 } else {
-                    if (logger.isWarnEnabled()) {
+                    if (logger.isInfoEnabled()) {
                         logger.info("fail-mock: " + invocation.getMethodName() 
+ " fail-mock enabled , url : " + directory.getUrl(), e);
                     }
                     result = doMockInvoke(invocation, e);


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org

Reply via email to