From 8d98b6c88fda47a9826192efdc8388b14cf2cd6e Mon Sep 17 00:00:00 2001 From: Cedric Bosdonnat Date: Fri, 2 Dec 2016 16:08:30 +0100 Subject: [PATCH] libxl/libxl_no_colo.c: used LOG*D functions MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Use LOG*D logging functions where possible instead of the LOG* ones. Signed-off-by: Cédric Bosdonnat Acked-by: Wei Liu --- tools/libxl/libxl_no_colo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/libxl/libxl_no_colo.c b/tools/libxl/libxl_no_colo.c index 152f19885c..2e1315ca0f 100644 --- a/tools/libxl/libxl_no_colo.c +++ b/tools/libxl/libxl_no_colo.c @@ -22,7 +22,7 @@ void libxl__colo_restore_setup(libxl__egc *egc, { STATE_AO_GC(crs->ao); - LOG(ERROR, "COLO is not supported"); + LOGD(ERROR, crs->domid, "COLO is not supported"); crs->callback(egc, crs, ERROR_FAIL); } @@ -39,7 +39,7 @@ void libxl__colo_save_setup(libxl__egc *egc, libxl__colo_save_state *css) libxl__domain_save_state *dss = CONTAINER_OF(css, *dss, css); STATE_AO_GC(dss->ao); - LOG(ERROR, "COLO is not supported"); + LOGD(ERROR, dss->domid, "COLO is not supported"); dss->callback(egc, dss, ERROR_FAIL); } -- 2.39.5