From ee92054faa594769a9c2afbaec9683f8fc508986 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Tue, 27 Oct 2015 17:44:01 +0900 Subject: [PATCH] Unbreak output buffer logging over the network log_local_buf() is for the server to log locally, use log_info_buf() to log over the specified channel. Signed-off-by: Jens Axboe --- lib/output_buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/output_buffer.c b/lib/output_buffer.c index da708747..03cd848b 100644 --- a/lib/output_buffer.c +++ b/lib/output_buffer.c @@ -39,7 +39,7 @@ size_t buf_output_flush(struct buf_output *out) size_t ret = 0; if (out->buflen) { - ret = log_local_buf(out->buf, out->buflen); + ret = log_info_buf(out->buf, out->buflen); memset(out->buf, 0, out->max_buflen); out->buflen = 0; } -- 2.25.1