Hi, Some classes directly creating JUL logger instead using logger from context. Here are 2 issues for this problem: https://issues.apache.org/jira/browse/IGNITE-8426 https://issues.apache.org/jira/browse/IGNITE-8899
Both fixes already in master and will be available with version 2.7 Evgenii 2018-08-07 9:28 GMT+03:00 monstereo <[email protected]>: > I can not solve this failed > log4j:WARN No appenders could be found for logger > (org.apache.ignite.internal.util.typedef.G). > log4j:WARN Please initialize the log4j system properly. > log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for > more info. > Aug 07, 2018 9:27:28 AM java.util.logging.LogManager$RootLogger log > SEVERE: Failed to resolve default logging config file: > config/java.util.logging.properties > > pom.xml: > <dependency> > <groupId>org.apache.ignite</groupId> > <artifactId>ignite-log4j</artifactId> > <version>2.5.0</version> > </dependency> > <dependency> > <groupId>org.apache.ignite</groupId> > <artifactId>ignite-slf4j</artifactId> > <version>2.5.0</version> > </dependency> > <dependency> > <groupId>org.slf4j</groupId> > <artifactId>slf4j-api</artifactId> > <version>1.7.25</version> > </dependency> > <dependency> > <groupId>org.slf4j</groupId> > <artifactId>slf4j-simple</artifactId> > <version>1.7.25</version> > <scope>test</scope> > </dependency> > > config xml > <bean id="ignite.cfg" > class="org.apache.ignite.configuration.IgniteConfiguration"> > > <property name="gridLogger"> > <bean class="org.apache.ignite.logger.slf4j.Slf4jLogger"/> > </property> > .. default configuration > </bean> > > > > -- > Sent from: http://apache-ignite-users.70518.x6.nabble.com/ >
