Skip to content

Commit

Permalink
debug print out comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
AdheipSingh committed Dec 4, 2024
1 parent 15ecfb0 commit ab1aab4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions plugins/out_parseable/parseable.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ static void cb_parseable_flush(struct flb_event_chunk *event_chunk,
mk_list_foreach(head, ctx->p_exclude_namespaces) {
entry = mk_list_entry(head, struct flb_slist_entry, _head);
flb_plg_info(ctx->ins, "Checking against exclude namespace: %s", entry->str);
flb_plg_info(ctx->ins, "namespace_name: %s %d", namespace_name,flb_sds_len(namespace_name));
if (flb_sds_cmp(entry->str, namespace_name, flb_sds_len(namespace_name)) == 0) {
flb_plg_info(ctx->ins, "Skipping excluded namespace: %s", namespace_name);
// Cleanup
Expand Down

0 comments on commit ab1aab4

Please sign in to comment.