Skip to content

Commit

Permalink
Include message when printing stack trace
Browse files Browse the repository at this point in the history
  • Loading branch information
gaul committed Oct 14, 2016
1 parent e97f75b commit c775472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/maginatics/jdbclint/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public interface Action {
public static final Action PRINT_STACK_TRACE_ACTION = new Action() {
@Override
public void apply(final String message, final Exception exception) {
new SQLException(exception).printStackTrace();
new SQLException(message, exception).printStackTrace();
}
};

Expand Down

0 comments on commit c775472

Please sign in to comment.