Skip to content

Commit cd5e4d3

Browse files
authored
Merge pull request HXSecurity#584 from java-sec/beta
feat: remove useless log
2 parents 8ee4a41 + d7ddf61 commit cd5e4d3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dongtai-api-gather/dongtai-api-gather-spring-api/src/main/java/io/dongtai/iast/api/gather/spring/convertor/RequestMappingInfoConvertor.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ private void parsePathPatternsRequestCondition() {
6060
});
6161
}
6262
} catch (Throwable e) {
63-
DongTaiLog.debug("spring api path.getPathPatternsCondition router exception", e);
63+
// DongTaiLog.debug("spring api path.getPathPatternsCondition router exception", e);
6464
}
6565

6666
try {
@@ -78,7 +78,7 @@ public void accept(String s) {
7878
});
7979
}
8080
} catch (Throwable e) {
81-
DongTaiLog.debug("spring api path.getPatternsCondition router exception", e);
81+
// DongTaiLog.debug("spring api path.getPatternsCondition router exception", e);
8282
}
8383
}
8484

@@ -144,7 +144,7 @@ public void accept(RequestMethod requestMethod) {
144144
}
145145
});
146146
} catch (Throwable e) {
147-
DongTaiLog.debug("spring api method router exception", e);
147+
// DongTaiLog.debug("spring api method router exception", e);
148148
}
149149
}
150150

@@ -210,7 +210,7 @@ public void accept(NameValueExpression<String> stringNameValueExpression) {
210210
});
211211
return parameterList;
212212
} catch (Throwable e) {
213-
DongTaiLog.debug("spring api parameters router exception: {}", e.getMessage());
213+
// DongTaiLog.debug("spring api parameters router exception: {}", e.getMessage());
214214
}
215215
return Collections.emptyList();
216216
}
@@ -242,7 +242,7 @@ public void accept(NameValueExpression<String> stringNameValueExpression) {
242242
});
243243
return headerParameterList;
244244
} catch (Throwable e) {
245-
DongTaiLog.debug("spring api headers router exception: {}", e.getMessage());
245+
// DongTaiLog.debug("spring api headers router exception: {}", e.getMessage());
246246
}
247247
return Collections.emptyList();
248248
}

0 commit comments

Comments
 (0)