File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
google-cloud-spanner/src/main/java/com/google/cloud/spanner Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -2842,10 +2842,13 @@ private StringBuilder createCheckedOutSessionsStackTraces() {
2842
2842
// Create the error message without holding the lock, as we are potentially looping through a
2843
2843
// large set, and analyzing a large number of stack traces.
2844
2844
StringBuilder stackTraces =
2845
- new StringBuilder (
2846
- "There are currently "
2847
- + currentlyCheckedOutSessions .size ()
2848
- + " sessions checked out:\n \n " );
2845
+ new StringBuilder ("MinSessions: " )
2846
+ .append (options .getMinSessions ())
2847
+ .append ("\n MaxSessions: " )
2848
+ .append (options .getMaxSessions ())
2849
+ .append ("\n There are currently " )
2850
+ .append (currentlyCheckedOutSessions .size ())
2851
+ .append (" sessions checked out:\n \n " );
2849
2852
if (options .isTrackStackTraceOfSessionCheckout ()) {
2850
2853
for (PooledSessionFuture session : currentlyCheckedOutSessions ) {
2851
2854
if (session .leakedException != null ) {
You can’t perform that action at this time.
0 commit comments