Detected both log4j-over-slf4j.jar AND slf4j-log4j12.jar on the class path, preempting StackOverflowError.

后端 未结 7 2044
南方客
南方客 2020-12-04 23:31

I have used xuggle library in my project to trans code the video from mp4 to flv. I have used slf4j libraries also to support logging

7条回答
  •  [愿得一人]
    2020-12-04 23:56

    SBT solution stated above did not work for me. What worked for me is excluding slf4j-log4j12

    //dependencies with exclusions
    libraryDependencies ++= Seq(
        //depencies
    ).map(_.exclude("org.slf4j","slf4j-log4j12"))

提交回复
热议问题