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

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


The following commit(s) were added to refs/heads/master by this push:
     new f8384bf  update hsf to dubbo
     new fb6af3c  Merge pull request #10 from qixiaobo/update-hsf-to-dubbo
f8384bf is described below

commit f8384bf7152e100e48ecae43a5932b324889da58
Author: qixiaobo <[email protected]>
AuthorDate: Fri Jul 26 12:56:58 2019 +0800

    update hsf to dubbo
---
 src/main/java/org/apache/dubbo/proxy/service/GenericInvoke.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/dubbo/proxy/service/GenericInvoke.java 
b/src/main/java/org/apache/dubbo/proxy/service/GenericInvoke.java
index 0bb4668..415fca4 100644
--- a/src/main/java/org/apache/dubbo/proxy/service/GenericInvoke.java
+++ b/src/main/java/org/apache/dubbo/proxy/service/GenericInvoke.java
@@ -46,7 +46,8 @@ public class GenericInvoke {
 
         try {
             GenericService svc = reference.get();
-            logger.info("hsf generic invoke, service is {}, method is {} , 
paramTypes is {} , paramObjs is {} , svc is {}.", interfaceName
+            logger.info("dubbo generic invoke, service is {}, method is {} , 
paramTypes is {} , paramObjs is {} , svc" +
+                            " is {}.", interfaceName
                     , methodName,paramTypes,paramObjs,svc);
             Object result = svc.$invoke(methodName, paramTypes, paramObjs);
             return result;

Reply via email to