Skip to content

Commit 06a2d98

Browse files
committed
fixed spelling of captureStackTrace
when copy-pasting (and replacing xxx) it did not work... took some time, until I see, that it is all lowercase
1 parent 2f3083b commit 06a2d98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ebean-datasource/src/main/java/io/ebean/datasource/pool/BusyConnectionBuffer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ private void closeBusyConnection(PooledConnection pc) {
119119
*/
120120
String busyConnectionInformation(boolean toLogger) {
121121
if (toLogger) {
122-
Log.info("Dumping [{0}] busy connections: (Use datasource.xxx.capturestacktrace=true ... to get stackTraces)", size());
122+
Log.info("Dumping [{0}] busy connections: (Use datasource.xxx.captureStackTrace=true ... to get stackTraces)", size());
123123
}
124124
StringBuilder sb = new StringBuilder();
125125
for (PooledConnection pc : slots) {

0 commit comments

Comments
 (0)