Skip to content

Commit

Permalink
Remove redundant log
Browse files Browse the repository at this point in the history
Signed-off-by: Uri Sternik <[email protected]>
  • Loading branch information
uristernik committed Oct 22, 2024
1 parent 88f44c6 commit e2aaa87
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions plugins/out_azure_blob/azure_blob.c
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ static int ensure_container(struct flb_azure_blob *ctx)
return FLB_FALSE;
}

flb_plg_debug(ctx->ins, "get container request failed, status=%i",
flb_plg_error(ctx->ins, "get container request failed, status=%i",
status);

return FLB_FALSE;
Expand Down Expand Up @@ -997,8 +997,6 @@ static void cb_azure_blob_flush(struct flb_event_chunk *event_chunk,
*/
ret = ensure_container(ctx);
if (ret == FLB_FALSE) {
flb_plg_error(ctx->ins, "cannot ensure container '%s' exists",
ctx->container_name);
FLB_OUTPUT_RETURN(FLB_RETRY);
}

Expand Down

0 comments on commit e2aaa87

Please sign in to comment.