From 227caa2230b93abf4df2537aa688baeb3c30048d Mon Sep 17 00:00:00 2001 From: Terry MacDonald Date: Fri, 2 Oct 2020 18:47:39 +1300 Subject: [PATCH] Fixing applying profile console messages --- HeliosPlus.Shared/ProfileRepository.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HeliosPlus.Shared/ProfileRepository.cs b/HeliosPlus.Shared/ProfileRepository.cs index 4380f73..30d9367 100644 --- a/HeliosPlus.Shared/ProfileRepository.cs +++ b/HeliosPlus.Shared/ProfileRepository.cs @@ -576,7 +576,7 @@ namespace HeliosPlus.Shared // Now lets start by changing the display topology Task applyProfileTopologyTask = Task.Run(() => { - Console.WriteLine("ShortcutRepository/SaveShortcutIconToCache : Applying Profile Topology" + profile.Name); + Console.WriteLine("ShortcutRepository/SaveShortcutIconToCache : Applying Profile Topology " + profile.Name); ApplyTopology(profile); }); applyProfileTopologyTask.Wait(); @@ -584,7 +584,7 @@ namespace HeliosPlus.Shared // And then change the path information Task applyProfilePathInfoTask = Task.Run(() => { - Console.WriteLine("ShortcutRepository/SaveShortcutIconToCache : Applying Profile Topology" + profile.Name); + Console.WriteLine("ShortcutRepository/SaveShortcutIconToCache : Applying Profile Path " + profile.Name); ApplyPathInfo(profile); }); applyProfilePathInfoTask.Wait();