From a21c9007abeb9f74b93222309ad023d6946746b9 Mon Sep 17 00:00:00 2001 From: Notselwyn <68616630+Notselwyn@users.noreply.github.com> Date: Mon, 17 Jul 2023 17:40:21 +0200 Subject: [PATCH] fix: removed debug logging statements --- SafeExamBrowser.SystemComponents/VirtualMachineDetector.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/SafeExamBrowser.SystemComponents/VirtualMachineDetector.cs b/SafeExamBrowser.SystemComponents/VirtualMachineDetector.cs index c7e37fa4..9f2a8488 100644 --- a/SafeExamBrowser.SystemComponents/VirtualMachineDetector.cs +++ b/SafeExamBrowser.SystemComponents/VirtualMachineDetector.cs @@ -135,7 +135,6 @@ namespace SafeExamBrowser.SystemComponents foreach (string configId in hardwareConfigSubkeys) { - logger.Info($"scanning configId: {configId}"); var hwConfigKey = $"{hwConfigParentKey}\\{configId}"; // collect system values for IsVirtualSystemInfo() @@ -166,8 +165,6 @@ namespace SafeExamBrowser.SystemComponents foreach (var computerIdName in computerIdNames) { - logger.Info($"computerId: {computerIdName}"); - // collect computer hardware summary (e.g. manufacturer&version&sku&...) object computerSummary; if (!registry.TryRead(computerIdsKey, computerIdName, out computerSummary))