Skip to content

Commit

Permalink
clean up log
Browse files Browse the repository at this point in the history
  • Loading branch information
AdheipSingh committed Nov 20, 2024
1 parent b0afe3e commit 68a5911
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/out_parseable/parseable.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ static void cb_parseable_flush(struct flb_event_chunk *event_chunk,

/* Convert from msgpack to JSON */
body = flb_msgpack_raw_to_json_sds(sbuf.data, sbuf.size);
flb_plg_info(ctx->ins, "Body content: %s", body);
// flb_plg_info(ctx->ins, "Body content: %s", body);

/* Free up buffer as we don't need it anymore */
msgpack_sbuffer_destroy(&sbuf);
Expand All @@ -124,7 +124,7 @@ static void cb_parseable_flush(struct flb_event_chunk *event_chunk,
if (end_quote != NULL) {
*end_quote = '\0'; // Null-terminate the extracted value
namespace_name = flb_sds_printf(&namespace_name, "%s", namespace_name_value);
flb_plg_info(ctx->ins, "Namespace name extracted value: %s", namespace_name_value);
// flb_plg_info(ctx->ins, "Namespace name extracted value: %s", namespace_name_value);
}
}
}
Expand Down

0 comments on commit 68a5911

Please sign in to comment.