Commit 99cc3b31 authored by yanzg's avatar yanzg

将源码打包进jar包

parent 1c1991d3
......@@ -29,6 +29,7 @@ public class DbPrintSqlExceptDefault implements DbPrintSqlExcept {
if (StringHelper.isEmpty(configDb.getPrintSqlFilter())) {
return false;
}
return sqlInfo.getSql().matches(configDb.getPrintSqlFilter()) || sqlInfo.getSqlName().matches(configDb.getPrintSqlFilter());
return sqlInfo.getSql().matches(configDb.getPrintSqlFilter())
|| sqlInfo.getSqlName().matches(configDb.getPrintSqlFilter());
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment