From 1ab2cd70f2ea36da85ffa3f8a51453b49ea0996c Mon Sep 17 00:00:00 2001 From: Simon Gaiser Date: Thu, 8 Feb 2018 22:49:09 +0100 Subject: [PATCH] libxl: Improve logging in libxl__build_dom() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit xc_dom_parse_image() does not set errno (at least in many code paths). So LOGE() is not useful. Signed-off-by: Simon Gaiser Reviewed-by: Roger Pau Monné --- tools/libxl/libxl_dom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/libxl_dom.c b/tools/libxl/libxl_dom.c index 29fd2f5d6a..2e29b52166 100644 --- a/tools/libxl/libxl_dom.c +++ b/tools/libxl/libxl_dom.c @@ -715,7 +715,7 @@ static int libxl__build_dom(libxl__gc *gc, uint32_t domid, } #endif if ( (ret = xc_dom_parse_image(dom)) != 0 ) { - LOGE(ERROR, "xc_dom_parse_image failed"); + LOG(ERROR, "xc_dom_parse_image failed"); goto out; } if ( (ret = libxl__arch_domain_init_hw_description(gc, info, state, dom)) != 0 ) { -- 2.39.5