aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_domain_save.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-05-28 09:31:09 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-05-28 09:31:09 +0100
commit0f02f4e0e8dc3fbd87ab11a088f960a1f38ee87f (patch)
treea9de00d1ee0cfa6e645b596cb23982603ceefd34 /tools/libxc/xc_domain_save.c
parent5cc436c1d2b3b0be3f42104582f53eec3969b43a (diff)
downloadxen-0f02f4e0e8dc3fbd87ab11a088f960a1f38ee87f.tar.gz
xen-0f02f4e0e8dc3fbd87ab11a088f960a1f38ee87f.tar.bz2
xen-0f02f4e0e8dc3fbd87ab11a088f960a1f38ee87f.zip
libxc: Use new DBGPRINTF for a few debugging output messages
oubuf and batch restore write messages should be sent with level XTL_DEBUG so that they don't disturb progress output even with -v. Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/libxc/xc_domain_save.c')
-rw-r--r--tools/libxc/xc_domain_save.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxc/xc_domain_save.c b/tools/libxc/xc_domain_save.c
index 425c6b3d32..398dac4288 100644
--- a/tools/libxc/xc_domain_save.c
+++ b/tools/libxc/xc_domain_save.c
@@ -172,7 +172,7 @@ static inline int outbuf_write(xc_interface *xch,
struct outbuf* ob, void* buf, size_t len)
{
if ( len > ob->size - ob->pos ) {
- DPRINTF("outbuf_write: %zu > %zu@%zu\n", len, ob->size - ob->pos, ob->pos);
+ DBGPRINTF("outbuf_write: %zu > %zu@%zu\n", len, ob->size - ob->pos, ob->pos);
return -1;
}