Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GoogleBigQueryProducer.java #2406

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -150,7 +150,7 @@ private int process(String tableId, String partitionDecorator, String suffix, Li
}

if (log.isTraceEnabled()) {
log.trace("Sending {} messages to bigquery table {}, suffix, partition",
log.trace("Sending {} messages to bigquery table {}, suffix {}, partition {}",
apiRequestRows.size(), tableId, suffix, partitionDecorator);
}

Expand All @@ -161,7 +161,7 @@ private int process(String tableId, String partitionDecorator, String suffix, Li
}

if (log.isTraceEnabled()) {
log.trace("Sent {} messages to bigquery table {}, suffix, partition",
log.trace("Sent {} messages to bigquery table {}, suffix {}, partition {}",
apiRequestRows.size(), tableId, suffix, partitionDecorator);
}
if (log.isDebugEnabled()) {
Expand Down