Skip to content

Commit c0b8704

Browse files
committed
add logs
1 parent 004b33e commit c0b8704

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

java-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc/BigQueryConnection.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -700,6 +700,7 @@ private void beginTransaction() {
700700
}
701701

702702
synchronized void updateSessionInfo(String sessionId) {
703+
LOG.fine("++enter++ ");
703704
if (sessionId != null && !sessionId.isEmpty()) {
704705
if (this.sessionInfoConnectionProperty == null
705706
|| !sessionId.equals(this.sessionInfoConnectionProperty.getValue())) {
@@ -721,6 +722,7 @@ synchronized void updateSessionInfo(String sessionId) {
721722
if (!found) {
722723
updated.add(sessionProperty);
723724
}
725+
LOG.info("Updated session info: " + sessionId);
724726
this.queryProperties = Collections.unmodifiableList(updated);
725727
}
726728
}

0 commit comments

Comments
 (0)