This is an automated email from the ASF dual-hosted git repository.
zhangliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new 51b524c93b3 Add final for LogbackConfiguration (#31933)
51b524c93b3 is described below
commit 51b524c93b350eaa5e82f1cff6425986941a28fc
Author: Liang Zhang <[email protected]>
AuthorDate: Sun Jun 30 18:56:15 2024 +0800
Add final for LogbackConfiguration (#31933)
* Refactor BootstrapInitializer
* Add final for LogbackConfiguration
---
.../org/apache/shardingsphere/proxy/config/LogbackConfiguration.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/proxy/bootstrap/src/main/java/org/apache/shardingsphere/proxy/config/LogbackConfiguration.java
b/proxy/bootstrap/src/main/java/org/apache/shardingsphere/proxy/config/LogbackConfiguration.java
index cf38e53277d..384db5f12e5 100644
---
a/proxy/bootstrap/src/main/java/org/apache/shardingsphere/proxy/config/LogbackConfiguration.java
+++
b/proxy/bootstrap/src/main/java/org/apache/shardingsphere/proxy/config/LogbackConfiguration.java
@@ -26,7 +26,7 @@ import ch.qos.logback.classic.spi.ILoggingEvent;
import ch.qos.logback.core.ConsoleAppender;
import ch.qos.logback.core.encoder.LayoutWrappingEncoder;
-public class LogbackConfiguration extends BasicConfigurator {
+public final class LogbackConfiguration extends BasicConfigurator {
public static final String DEFAULT_PATTERN = "[%-5level] %d{yyyy-MM-dd
HH:mm:ss.SSS} [%thread] %logger{36} - %msg%n";