From 20be78aeebef28fa419e0db3eee1f702791cdac0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Feb 2025 02:49:58 +0000 Subject: [PATCH 1/2] build(deps-dev): bump ch.qos.logback:logback-core from 1.2.13 to 1.3.15 Bumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.2.13 to 1.3.15. - [Release notes](https://github.com/qos-ch/logback/releases) - [Commits](https://github.com/qos-ch/logback/compare/v_1.2.13...v_1.3.15) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-core dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 334c3af2a..c81d3ffe5 100644 --- a/pom.xml +++ b/pom.xml @@ -89,7 +89,7 @@ 1.15 32.0.1-jre 1.7.25 - 1.2.13 + 1.3.15 2.19.0 3.4.4 1.2.17 From 72bfe9d77af464509f786ae1fad0dd1f275921e9 Mon Sep 17 00:00:00 2001 From: Haotian Zhang <928016560@qq.com> Date: Tue, 11 Feb 2025 10:55:58 +0800 Subject: [PATCH 2/2] fix --- .../polaris/logging/logback/PolarisJoranConfigurator.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/polaris-common/polaris-logging/src/main/java/com/tencent/polaris/logging/logback/PolarisJoranConfigurator.java b/polaris-common/polaris-logging/src/main/java/com/tencent/polaris/logging/logback/PolarisJoranConfigurator.java index aa09658c9..2efa47b4c 100644 --- a/polaris-common/polaris-logging/src/main/java/com/tencent/polaris/logging/logback/PolarisJoranConfigurator.java +++ b/polaris-common/polaris-logging/src/main/java/com/tencent/polaris/logging/logback/PolarisJoranConfigurator.java @@ -18,24 +18,18 @@ package com.tencent.polaris.logging.logback; import ch.qos.logback.classic.joran.JoranConfigurator; -import ch.qos.logback.core.joran.event.SaxEvent; import ch.qos.logback.core.joran.spi.JoranException; import java.io.IOException; import java.io.InputStream; import java.net.URL; import java.net.URLConnection; -import java.util.List; /** * @author Haotian Zhang */ public class PolarisJoranConfigurator extends JoranConfigurator { - @Override - public void registerSafeConfiguration(List eventList) { - } - public void doPolarisConfigure(URL url) throws JoranException { InputStream in = null; try {