Skip to content

Commit

Permalink
add log4j-core (#247)
Browse files Browse the repository at this point in the history
to get rid of
```
ERROR StatusLogger Log4j2 could not find a logging implementation. Please add log4j-core to the classpath. Using SimpleLogger to log to the console...
```
  • Loading branch information
mpollmeier authored Feb 2, 2023
1 parent a6e87fd commit fb027c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ lazy val commonSettings = Seq(
"com.atlassian.sourcemap" % "sourcemap" % "2.0.0",
"commons-io" % "commons-io" % "2.11.0",
"org.slf4j" % "slf4j-api" % "2.0.6",
"org.apache.logging.log4j" % "log4j-slf4j2-impl" % "2.19.0" % Optional,
"org.apache.logging.log4j" % "log4j-slf4j2-impl" % "2.19.0" % Optional,
"org.apache.logging.log4j" % "log4j-core" % "2.19.0" % Optional,
"io.joern" %% "x2cpg" % joernVersion % Test classifier "tests",
"org.scalatest" %% "scalatest" % "3.2.15" % Test
)
Expand Down

0 comments on commit fb027c3

Please sign in to comment.