Skip to content
Open
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
2 changes: 1 addition & 1 deletion plugins/in_kubernetes_events/kubernetes_events.c
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ static int process_http_chunk(struct k8s_events* ctx, struct flb_http_client *c,
token_size = token_end - token_start;
ret = flb_pack_json(token_start, token_size, &buf_data, &buf_size, &root_type, &consumed);
if (ret == -1) {
flb_plg_debug(ctx->ins, "could not process payload, incomplete or bad formed JSON: %s",
flb_plg_warn(ctx->ins, "could not process payload, incomplete or bad formed JSON: %s",
c->resp.payload);
}
else {
Expand Down
Loading