slf4j+log4j2 控制檯輸出錯誤解決
阿新 • • 發佈:2018-12-23
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
在使用log4j2+slf4j的時候遇到這個錯誤提示,這不到類。在slf4j的官網有正好有相應的說明。需要新增依賴包
slf4j-api-1.7.5.jar slf4j-simple-1.7.5.jar
在Gradle的build.gradle配置檔案種新增依賴
dependencies{
compile(
"org.apache.logging.log4j:log4j-api:$log4j_version",
"org.apache.logging.log4j:log4j-core:$log4j_version",
"org.slf4j:slf4j-api:$slf4j_version",
"org.slf4j:slf4j-simple:$slf4j_version"
)}
重新整理工程。再次輸出,問題解決。