Skip to content

Commit

Permalink
fix(log): 修复 continew-starter.log.exclude-patterns 配置不生效的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
fire authored and Charles7c committed Sep 20, 2024
1 parent 1a97a1b commit ca1b92c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ public void setExcludePatterns(List<String> excludePatterns) {
* @return 是否匹配
*/
public boolean isMatch(String uri) {
return this.getExcludePatterns().stream().anyMatch(pattern -> SpringWebUtils.isMatch(pattern, uri));
return this.getExcludePatterns().stream().anyMatch(pattern -> SpringWebUtils.isMatch(uri, pattern));
}
}

0 comments on commit ca1b92c

Please sign in to comment.