From c9ad54db40c9953649115c872ffc73edd97274bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Tomko?= Date: Mon, 18 Feb 2013 14:48:20 +0100 Subject: [PATCH] storage: qemu-img: change INFO to DEBUG For really old qemu-img binaries which do not support specifying the format of the backing file, display a DEBUG message instead of INFO that this can't be done. --- src/storage/storage_backend.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/storage/storage_backend.c b/src/storage/storage_backend.c index b32c7efe0c..460b792614 100644 --- a/src/storage/storage_backend.c +++ b/src/storage/storage_backend.c @@ -807,8 +807,8 @@ virStorageBackendCreateQemuImgCmd(virConnectPtr conn, break; default: - VIR_INFO("Unable to set backing store format for %s with %s", - vol->target.path, create_tool); + VIR_DEBUG("Unable to set backing store format for %s with %s", + vol->target.path, create_tool); if (do_encryption) virCommandAddArg(cmd, "-e"); -- GitLab