Skip to content

Commit 0868a1b

Browse files
committed
feat:3311
1 parent af3a41d commit 0868a1b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.alipay.sofa</groupId>
66
<artifactId>hessian</artifactId>
7-
<version>3.3.10</version>
7+
<version>3.3.11</version>
88
<packaging>jar</packaging>
99

1010
<name>${project.groupId}:${project.artifactId}</name>

src/main/java/com/alipay/hessian/NameBlackListFilter.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,10 @@ public class NameBlackListFilter implements ClassNameFilter {
3838

3939
private static Logger judgeLogger() {
4040

41+
//user can use a specify class to do some extra info in static
4142
try {
42-
NameBlackListFilter.class.getClassLoader().loadClass("com.alipay.sofa.common.log.LoggerSpaceManager");
43+
Class.forName("com.alipay.sofa.middleware.log.ConfigLogFactory", true,
44+
NameBlackListFilter.class.getClassLoader());
4345
} catch (Throwable e) {
4446
//do nothing
4547
return null;

0 commit comments

Comments
 (0)