Skip to content

Commit

Permalink
SqlRecorder: better introduction of PARAMS in toString
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed Nov 11, 2021
1 parent 704e272 commit 88c7474
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public QueryEntry(String sql, List<String> params) {
public String toString() {
return params == null || params.isEmpty()
? sql
: sql + '\n' + String.join(", ", params);
: sql + "\nPARAMS: " + String.join(", ", params);
}
}
}

0 comments on commit 88c7474

Please sign in to comment.