当前位置:网站首页>Error statuslogger log4j2 could not find a logging implementation

Error statuslogger log4j2 could not find a logging implementation

2022-07-05 04:35:00 Alienware^

The console appears :
ERROR StatusLogger Log4j2 could not find a logging implementation. Please add log4j-core to the classpath. Using SimpleLogger to log to the console…

stay pom.xml File to add

<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>log4j-core</artifactId>
    <version>2.10.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>log4j-api</artifactId>
    <version>2.10.0</version>
</dependency>

Problem solving !

原网站

版权声明
本文为[Alienware^]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202140633494706.html