Skip to content

Commit f117b14

Browse files
committed
clean up log
Signed-off-by: AdheipSingh <adheip1222@gmail.com>
1 parent f78f09b commit f117b14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/out_parseable/parseable.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ static void cb_parseable_flush(struct flb_event_chunk *event_chunk,
9999

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

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

0 commit comments

Comments
 (0)