Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions plugins/in_tcp/tcp_conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ static ssize_t parse_payload_none(struct tcp_conn *conn)
else {
flb_plg_debug(ctx->ins, "parser '%s' failed on incoming data",
ctx->parser_name);
flb_plg_debug(ctx->ins, "unparsed log message: %.*s", (int) len, buf);
ret = flb_log_event_encoder_begin_record(ctx->log_encoder);

if (ret == FLB_EVENT_ENCODER_SUCCESS) {
Expand Down
1 change: 1 addition & 0 deletions plugins/in_udp/udp_conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ static ssize_t parse_payload_none(struct udp_conn *conn)

flb_plg_debug(ctx->ins, "parser '%s' failed on incoming data",
ctx->parser_name);
flb_plg_debug(ctx->ins, "unparsed log message: %.*s", (int) len, buf);
ret = flb_log_event_encoder_begin_record(ctx->log_encoder);

if (ret == FLB_EVENT_ENCODER_SUCCESS) {
Expand Down