From 58a1e8ebd3df40fe6b8895543057526472ce8414 Mon Sep 17 00:00:00 2001 From: MollySophia Date: Sat, 1 Oct 2022 09:47:46 +0800 Subject: [PATCH] Print the driver file name when installation fails --- DriverUpdater/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DriverUpdater/Program.cs b/DriverUpdater/Program.cs index 74a7b6f..5c72e5e 100644 --- a/DriverUpdater/Program.cs +++ b/DriverUpdater/Program.cs @@ -258,7 +258,7 @@ Invalid ARG can be thrown when an issue happens with a specific driver inf if ((ntStatus & 0x80000000) != 0) { Logging.Log(""); - Logging.Log($"AddOfflineDriver: ntStatus={ntStatus}", Logging.LoggingLevel.Error); + Logging.Log($"AddOfflineDriver: ntStatus={ntStatus}, driverInf={inf}", Logging.LoggingLevel.Error); return; }