Skip to content

Commit

Permalink
input: fix debug/warn message
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Silva <eduardo@treasure-data.com>
  • Loading branch information
edsiper authored and zhaoyang.wang committed May 28, 2018
1 parent 9473910 commit 41abd11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/flb_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -788,8 +788,8 @@ struct flb_input_dyntag *flb_input_dyntag_create(struct flb_input_instance *in,
/* Destroy an dyntag node */
int flb_input_dyntag_destroy(struct flb_input_dyntag *dt)
{
flb_warn("[dyntag %s] %p destroy (tag=%s, bytes=%lu)",
dt->in->name, dt, dt->tag, dt->mp_sbuf.size);
flb_debug("[dyntag %s] %p destroy (tag=%s, bytes=%lu)",
dt->in->name, dt, dt->tag, dt->mp_sbuf.size);

msgpack_sbuffer_destroy(&dt->mp_sbuf);
mk_list_del(&dt->_head);
Expand Down

0 comments on commit 41abd11

Please sign in to comment.