修改org.slf4j.Logger时,修改默认配置文件位置

Posted aloneblog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改org.slf4j.Logger时,修改默认配置文件位置相关的知识,希望对你有一定的参考价值。

File logbackFile = new File(ConstantsTools.PATH_LOG_CONFIG);
if (logbackFile.exists()) {
LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory();
JoranConfigurator configurator = new JoranConfigurator();
configurator.setContext(lc);
lc.reset();
try {
configurator.doConfigure(logbackFile);
}
catch (JoranException e) {
e.printStackTrace(System.err);
System.exit(-1);
}
}













以上是关于修改org.slf4j.Logger时,修改默认配置文件位置的主要内容,如果未能解决你的问题,请参考以下文章

org.slf4j.logger 日志记录到哪里

无法导入org.slf4j.Logger-如何将jar添加到classpath?

idea 怎样添加import org.slf4j.logger

如何打印对象内容

Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/Logger。。。

Logger工具类