Commit 0cf94cc4 authored by Quxl's avatar Quxl

x

parent e99f0ab9
...@@ -594,9 +594,9 @@ public class JdbcTemplate extends org.springframework.jdbc.core.JdbcTemplate { ...@@ -594,9 +594,9 @@ public class JdbcTemplate extends org.springframework.jdbc.core.JdbcTemplate {
protected void showSql(String sql, Object[] args) { protected void showSql(String sql, Object[] args) {
if (sql_level == 1) { if (sql_level == 1) {
logger.info(sql); logger.debug(sql);
} else if (sql_level > 1) { } else if (sql_level > 1) {
logger.info(sql + " " + StringUtil.toJson(args)); logger.debug(sql + " " + StringUtil.toJson(args));
} }
} }
} }
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