Skip to content

Commit b510e70

Browse files
authored
out_kinesis_streams: info => debug for log send statement (#4076)
* out_kinesis_firehose: info => debug for log send statement Signed-off-by: Wesley Pettit <[email protected]>
1 parent c2c33b3 commit b510e70

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/out_kinesis_firehose/firehose.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ static void cb_firehose_flush(const void *data, size_t bytes,
331331
FLB_OUTPUT_RETURN(FLB_RETRY);
332332
}
333333

334-
flb_plg_info(ctx->ins, "Processed %d records, sent %d to %s",
334+
flb_plg_debug(ctx->ins, "Processed %d records, sent %d to %s",
335335
buf->records_processed, buf->records_sent, ctx->delivery_stream);
336336
flush_destroy(buf);
337337

plugins/out_kinesis_streams/kinesis.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ static void cb_kinesis_flush(const void *data, size_t bytes,
341341
FLB_OUTPUT_RETURN(FLB_RETRY);
342342
}
343343

344-
flb_plg_info(ctx->ins, "Processed %d records, sent %d to %s",
344+
flb_plg_debug(ctx->ins, "Processed %d records, sent %d to %s",
345345
buf->records_processed, buf->records_sent, ctx->stream_name);
346346
kinesis_flush_destroy(buf);
347347

0 commit comments

Comments
 (0)