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

后端 未结 7 2050
南方客
南方客 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:50

    For gradle

    compile('org.xxx:xxx:1.0-SNAPSHOT'){
        exclude module: 'log4j'
        exclude module: 'slf4j-log4j12'
    }
    

提交回复
热议问题