From 36289338828275afc709a059e1ae404b8ba824c4 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sat, 21 Jul 2012 13:41:16 -0400 Subject: [PATCH] Increase debug level of Xen detection code. Now that Xen is enabled by default the detection code will frequently not find a valid Xen hypervisor signature, so don't spam the debug logs. Signed-off-by: Kevin O'Connor --- src/xen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xen.c b/src/xen.c index 41aab98..a4669d0 100644 --- a/src/xen.c +++ b/src/xen.c @@ -62,7 +62,7 @@ void xen_probe(void) memcpy(signature + 8, &edx, 4); signature[12] = 0; - dprintf(1, "Found hypervisor signature \"%s\" at %x\n", + dprintf(9, "Found hypervisor signature \"%s\" at %x\n", signature, base); if (strcmp(signature, "XenVMMXenVMM") == 0) { /* Set debug_io_port first, so the following messages work. */ -- 2.39.5