]> xenbits.xensource.com Git - people/pauldu/xenvif.git/commitdiff
Change coinstaller log level to TXTLOG_WARNING
authorPaul Durrant <paul.durrant@citrix.com>
Thu, 22 Oct 2015 14:41:25 +0000 (15:41 +0100)
committerPaul Durrant <paul.durrant@citrix.com>
Tue, 3 Nov 2015 14:37:24 +0000 (14:37 +0000)
Windows 10 does not enable logging of TXTLOG_DETAILS in setupapi.dev.log by
default, so use TXTLOG_WARNING to make sure the messages appear.

Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
src/coinst/coinst.c

index 825ba388791d1d872d4d2d20d22a6faf66e0c465..e35c5d3bc0cbaa5a7f6195c5606891f8cd6c774b 100644 (file)
@@ -87,7 +87,7 @@ __Log(
 
     LogToken = SetupGetThreadLogToken();
     Category = TXTLOG_VENDOR;
-    Flags = TXTLOG_DETAILS;
+    Flags = TXTLOG_WARNING;
 
     SetupWriteTextLog(LogToken, Category, Flags, Buffer);
     Length = __min(MAXIMUM_BUFFER_SIZE - 1, Length + 2);