From a7ef20677d14b7e8e44c6f4d00b515e62a6d54df Mon Sep 17 00:00:00 2001 From: Terry MacDonald Date: Thu, 9 Dec 2021 08:40:51 +1300 Subject: [PATCH] Fixed some log entry names --- DisplayMagician/Properties/AssemblyInfo.cs | 4 ++-- DisplayMagicianShared/ProfileItem.cs | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/DisplayMagician/Properties/AssemblyInfo.cs b/DisplayMagician/Properties/AssemblyInfo.cs index 13ca8b1..8283356 100644 --- a/DisplayMagician/Properties/AssemblyInfo.cs +++ b/DisplayMagician/Properties/AssemblyInfo.cs @@ -26,8 +26,8 @@ using System.Resources; [assembly: Guid("e4ceaf5e-ad01-4695-b179-31168eb74c48")] // Version information -[assembly: AssemblyVersion("2.1.1.37")] -[assembly: AssemblyFileVersion("2.1.1.37")] +[assembly: AssemblyVersion("2.1.1.38")] +[assembly: AssemblyFileVersion("2.1.1.38")] [assembly: NeutralResourcesLanguageAttribute( "en" )] [assembly: CLSCompliant(true)] diff --git a/DisplayMagicianShared/ProfileItem.cs b/DisplayMagicianShared/ProfileItem.cs index 7966af2..8959dd1 100644 --- a/DisplayMagicianShared/ProfileItem.cs +++ b/DisplayMagicianShared/ProfileItem.cs @@ -682,12 +682,12 @@ namespace DisplayMagicianShared if (itWorkedforNVIDIAColor) { - SharedLogger.logger.Trace($"NVIDIAInfo/loadFromFile: The NVIDIA display settings that override windows within the profile {Name} were successfully applied."); + SharedLogger.logger.Trace($"ProfileRepository/SetActive: The NVIDIA display settings that override windows within the profile {Name} were successfully applied."); return true; } else { - SharedLogger.logger.Trace($"NVIDIAInfo/loadFromFile: The NVIDIA display settings that override windows within the profile {Name} were NOT applied correctly."); + SharedLogger.logger.Trace($"ProfileRepository/SetActive: The NVIDIA display settings that override windows within the profile {Name} were NOT applied correctly."); } } else @@ -747,12 +747,12 @@ namespace DisplayMagicianShared if (itWorkedforAMDColor) { - SharedLogger.logger.Trace($"AMDInfo/loadFromFile: The AMD display settings that override windows within the profile {Name} were successfully applied."); + SharedLogger.logger.Trace($"ProfileRepository/SetActive: The AMD display settings that override windows within the profile {Name} were successfully applied."); return true; } else { - SharedLogger.logger.Trace($"AMDInfo/loadFromFile: The AMD display settings that override windows within the profile {Name} were NOT applied correctly."); + SharedLogger.logger.Trace($"ProfileRepository/SetActive: The AMD display settings that override windows within the profile {Name} were NOT applied correctly."); } } else