提交 22625ebc authored 作者: Thomas Mueller's avatar Thomas Mueller

SQL statements in the exception message are no longer included if they contain '--hide--'.

上级 8e899871
...@@ -154,7 +154,7 @@ public class JdbcSQLException extends SQLException { ...@@ -154,7 +154,7 @@ public class JdbcSQLException extends SQLException {
* INTERNAL * INTERNAL
*/ */
public void setSQL(String sql) { public void setSQL(String sql) {
if (sql.indexOf(HIDE_SQL) < 0) { if (sql != null && sql.indexOf(HIDE_SQL) >= 0) {
sql = "-"; sql = "-";
} }
this.sql = sql; this.sql = sql;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论