-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Description
Class: com.google.cloud.spanner.SessionPool
Function: PoolMaintainer.closeIdleSessions(Instant currTime)
logger.log(Level.FINE, "Closing session %s", sess.getName());
Should instead be
logger.log(Level.FINE, "Closing session {0}", sess.getName());
to replace {0} with sess.getName(), otherwise all it's logging is Closing session %s
Metadata
Metadata
Assignees
Labels
priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.