Skip to content

Commit

Permalink
plugin_proxy: api: Fix a wrong binded target
Browse files Browse the repository at this point in the history
For output plugin, we need to bind flb_output_log_check.

Signed-off-by: Hiroshi Hatake <[email protected]>
  • Loading branch information
cosmo0920 committed Jul 13, 2022
1 parent 5e30211 commit a93593a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flb_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ struct flb_api *flb_api_create()

api->log_print = flb_log_print;
api->input_log_check = flb_input_log_check;
api->output_log_check = flb_input_log_check;
api->output_log_check = flb_output_log_check;

return api;
}
Expand Down

0 comments on commit a93593a

Please sign in to comment.