mirage-sql / mirage

Mirage-SQL - the SQL Centric Database Access Library for Java
Apache License 2.0
59 stars 21 forks source link

Avoid log output that print sql at INFO level #64

Closed wreulicke closed 6 years ago

wreulicke commented 6 years ago

SqlExecutor outputs a SQL and parameters for SQL at INFO level, so useful for debug.

But, parameters sometimes contains some sensitive information. (ex. address) So, I think that the logging in SqlExecutor should make lower logging level. (ex. DEBUG)

Regards.

wreulicke commented 6 years ago

I try to make a PR.