Skip to content

Commit

Permalink
chore: change flush log level to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
gintarasm committed Feb 8, 2024
1 parent 32df104 commit 0afefe5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ public void close() {

@Override
public void flush(boolean endOfInput) {
logger.info("Flushing BigQuery writer {} data. Inflight request count {}", this.sinkInitContext.getSubtaskId(), inflightRequestCount.getRegisteredParties());
logger.debug("Flushing BigQuery writer {} data. Inflight request count {}", this.sinkInitContext.getSubtaskId(), inflightRequestCount.getRegisteredParties());
checkAsyncException();
inflightRequestCount.arriveAndAwaitAdvance();
logger.info("BigQuery writer {} data flushed. Inflight request count {}", this.sinkInitContext.getSubtaskId(), inflightRequestCount.getRegisteredParties());
logger.debug("BigQuery writer {} data flushed. Inflight request count {}", this.sinkInitContext.getSubtaskId(), inflightRequestCount.getRegisteredParties());
}

static class AppendCallBack<A> implements ApiFutureCallback<AppendRowsResponse> {
Expand Down

0 comments on commit 0afefe5

Please sign in to comment.