|
|
|
@ -26,7 +26,7 @@ public class LogFactory {
|
|
|
|
|
String logType= System.getProperty("druid.logType"); |
|
|
|
|
if(logType != null){ |
|
|
|
|
if(logType.equalsIgnoreCase("slf4j")){ |
|
|
|
|
tryImplementation("org.slf4j.Logger", "SLF4JImpl"); |
|
|
|
|
tryImplementation("com.fr.third.slf4j.Logger", "SLF4JImpl"); |
|
|
|
|
}else if(logType.equalsIgnoreCase("log4j")){ |
|
|
|
|
tryImplementation("org.apache.log4j.Logger", "Log4jImpl"); |
|
|
|
|
}else if(logType.equalsIgnoreCase("log4j2")){ |
|
|
|
@ -38,13 +38,13 @@ public class LogFactory {
|
|
|
|
|
tryImplementation("java.util.logging.Logger", "Jdk14LoggingImpl"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
tryImplementation("com.fr.third.slf4j.Logger", "SLF4JImpl"); |
|
|
|
|
// 优先选择log4j2防止漏洞
|
|
|
|
|
tryImplementation("com.fr.third.apache.logging.log4j.Logger", "FRLog4j2Impl"); |
|
|
|
|
// 优先选择log4j,而非Apache Common Logging. 因为后者无法设置真实Log调用者的信息
|
|
|
|
|
tryImplementation("com.fr.third.apache.log4j.Logger", "FRLog4jImpl"); |
|
|
|
|
tryImplementation("org.apache.log4j.Logger", "Log4jImpl"); |
|
|
|
|
tryImplementation("org.apache.logging.log4j.Logger", "Log4j2Impl"); |
|
|
|
|
tryImplementation("org.slf4j.Logger", "SLF4JImpl"); |
|
|
|
|
tryImplementation("org.apache.commons.logging.LogFactory", "JakartaCommonsLoggingImpl"); |
|
|
|
|
tryImplementation("java.util.logging.Logger", "Jdk14LoggingImpl"); |
|
|
|
|
|
|
|
|
|