This repository was archived by the owner on Feb 24, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1 Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments