Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit e071fee

Browse files
committed
.
1 parent 1caec8f commit e071fee

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/ConnectionWorker.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ private void appendLoop() {
581581
}
582582
}
583583

584-
log.fine("Cleanup starts. Stream: " + streamName + " id: " + writerId);
584+
log.info("Cleanup starts. Stream: " + streamName + " id: " + writerId);
585585
// At this point, the waiting queue is drained, so no more requests.
586586
// We can close the stream connection and handle the remaining inflight requests.
587587
if (streamConnection != null) {
@@ -590,13 +590,13 @@ private void appendLoop() {
590590
}
591591

592592
// At this point, there cannot be more callback. It is safe to clean up all inflight requests.
593-
log.fine(
593+
log.info(
594594
"Stream connection is fully closed. Cleaning up inflight requests. Stream: "
595595
+ streamName
596596
+ " id: "
597597
+ writerId);
598598
cleanupInflightRequests();
599-
log.fine("Append thread is done. Stream: " + streamName + " id: " + writerId);
599+
log.info("Append thread is done. Stream: " + streamName + " id: " + writerId);
600600
}
601601

602602
/*
@@ -809,7 +809,9 @@ private void doneCallback(Throwable finalStatus) {
809809
+ (maxRetryDuration.toMillis()
810810
- (System.currentTimeMillis() - connectionRetryStartTime))
811811
+ ", for stream "
812-
+ streamName);
812+
+ streamName
813+
+ " id:"
814+
+ writerId);
813815
} else {
814816
Exceptions.StorageException storageException = Exceptions.toStorageException(finalStatus);
815817
this.connectionFinalStatus = storageException != null ? storageException : finalStatus;

0 commit comments

Comments
 (0)