startjava opened a new issue #8694:
URL: https://github.com/apache/dubbo/issues/8694


   ```
             <!-- Zookeeper dependencies -->
               <dependency>
                   <groupId>org.apache.dubbo</groupId>
                   <artifactId>dubbo-dependencies-zookeeper</artifactId>
                   <version>${dubbo.version}</version>
                   <type>pom</type>
               </dependency>
   ```
   
   
这个依赖中的zk中使用的log4j版本,,,而dubbo-spring-xxx中使用的是log4j2版本,导致我在测试check时,如果不配置logger不出现异常,,,,能不能统一一下日志框架版本呢,
   
   不然我得在idea中的其它子模块中显式使用排除:
   ```
           <dependency>
               <groupId>org.apache.zookeeper</groupId>
               <artifactId>zookeeper</artifactId>
               <exclusions>
                   <exclusion>
                       <groupId>log4j</groupId>
                       <artifactId>log4j</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   ```
   
   代码很冗余啊,很多模块用到了zk,而zk用到了log4j。


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to