判断使用的日志框架

发布时间:2023年12月30日

? ? @Test
? ? public void testLoggerLoaction() {
?
? ? ? ? String loggerBinderClassName = "org.slf4j.impl.StaticLoggerBinder";
? ? ? ? Class<?> loggerBinderClass = null;
? ? ? ? try {
? ? ? ? ? ? loggerBinderClass = Class.forName(loggerBinderClassName);
? ? ? ? } catch (ClassNotFoundException e) {
? ? ? ? ? ? System.out.println(loggerBinderClassName + " is not found");
? ? ? ? }
? ? ? ? URL loaction = loggerBinderClass.getProtectionDomain().getCodeSource().getLocation();
? ? ? ? System.out.println(loaction);
? ? }

文章来源:https://blog.csdn.net/weixin_46771779/article/details/135306048
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。