I should be shot for writing this code originally. I can hardly think of a place where the exception is more important to see.

This commit is contained in:
Par Winzell
2009-04-27 21:58:31 +00:00
parent 262ef317ad
commit 5a1dfdc306
@@ -85,7 +85,7 @@ public abstract class SQLBuilder
try { try {
bindable.doBind(conn, stmt, argIx); bindable.doBind(conn, stmt, argIx);
} catch (Exception e) { } catch (Exception e) {
log.warning("Failed to bind statement argument", "argIx", argIx); log.warning("Failed to bind statement argument", "argIx", argIx, e);
} }
argIx ++; argIx ++;
} }