diff mbox

[30/35] libxl/libxl_save_callout.c: used LOG*D functions

Message ID 20161115101913.10396-31-cbosdonnat@suse.com (mailing list archive)
State New, archived
Headers show

Commit Message

Cedric Bosdonnat Nov. 15, 2016, 10:19 a.m. UTC
From: Cédric Bosdonnat <cedric.bosdonnat@free.fr>

Use LOG*D logging functions where possible instead of the LOG* ones.

Signed-off-by: Cédric Bosdonnat <cbosdonnat@suse.com>
---
 tools/libxl/libxl_save_callout.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox

Patch

diff --git a/tools/libxl/libxl_save_callout.c b/tools/libxl/libxl_save_callout.c
index 2e6267d..46b892c 100644
--- a/tools/libxl/libxl_save_callout.c
+++ b/tools/libxl/libxl_save_callout.c
@@ -294,8 +294,8 @@  static void helper_stdout_readable(libxl__egc *egc, libxl__ev_fd *ev,
     int rc, errnoval;
 
     if (revents & (POLLERR|POLLPRI)) {
-        LOG(ERROR, "%s signaled POLLERR|POLLPRI (%#x)",
-            shs->stdout_what, revents);
+        LOGD(ERROR, shs->domid, "%s signaled POLLERR|POLLPRI (%#x)",
+             shs->stdout_what, revents);
         rc = ERROR_FAIL;
  out:
         /* this is here because otherwise we bypass the decl of msg[] */
@@ -339,14 +339,14 @@  static void helper_exited(libxl__egc *egc, libxl__ev_child *ch,
 
     if (shs->need_results) {
         if (!shs->rc) {
-            LOG(ERROR,"%s exited without providing results",what);
+            LOGD(ERROR,shs->domid,"%s exited without providing results",what);
             shs->rc = ERROR_FAIL;
         }
     }
 
     if (!shs->completed) {
         if (!shs->rc) {
-            LOG(ERROR,"%s exited without signaling completion",what);
+            LOGD(ERROR,shs->domid,"%s exited without signaling completion",what);
             shs->rc = ERROR_FAIL;
         }
     }