From 5eebf894aa3017723be0b2f9a3bc53a263f98f0a Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 24 Jun 2013 15:43:20 +0100 Subject: [PATCH] plugins/xz: Fix debug vs error mixup. --- plugins/xz/xzfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/xz/xzfile.c b/plugins/xz/xzfile.c index d54e7eb3..fcc2937e 100644 --- a/plugins/xz/xzfile.c +++ b/plugins/xz/xzfile.c @@ -103,7 +103,7 @@ xzfile_open (const char *filename) goto err2; size = lzma_index_uncompressed_size (xz->idx); - nbdkit_error ("%s: size %" PRIu64 " bytes (%.1fM)", + nbdkit_debug ("%s: size %" PRIu64 " bytes (%.1fM)", filename, size, size / 1024.0 / 1024.0); nbdkit_debug ("%s: %zu streams, %zu blocks", filename, xz->nr_streams, xz->nr_blocks); -- 2.11.4.GIT