From 2905ea8141d3dee6fbe2ca37c2ab59632203261f Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Wed, 21 Jul 2021 10:57:19 +1000 Subject: [PATCH] Update Tracker.cs --- src/DiffEngineTray/Tracker.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DiffEngineTray/Tracker.cs b/src/DiffEngineTray/Tracker.cs index bb2ea052..b8e431fe 100644 --- a/src/DiffEngineTray/Tracker.cs +++ b/src/DiffEngineTray/Tracker.cs @@ -116,7 +116,7 @@ public TrackedMove AddMove( ProcessEx.TryGet(processId.Value, out process); } - Log.Information("MoveAdded. Target:{target}, CanKill:{canKill}, ProcessId:{processId}, CommandLine:{commandLine}", targetFile, canKill, processId, $"{exeFile} {arguments}"); + Log.Information("MoveAdded. Target:{target}, CanKill:{canKill}, Process:{process}, Command:{command}", targetFile, canKill, processId, $"{exeFile} {arguments}"); var solution = SolutionDirectoryFinder.Find(key); return new(temp, key, exe, arguments, canKill, process, solution); @@ -134,7 +134,7 @@ public TrackedMove AddMove( ProcessEx.TryGet(processId.Value, out process); } - Log.Information("MoveUpdated. Target:{target}, CanKill:{canKill}, ProcessId:{processId}, CommandLine:{commandLine}", targetFile, canKill, processId, $"{exeFile} {arguments}"); + Log.Information("MoveUpdated. Target:{target}, CanKill:{canKill}, Process:{process}, Command:{command}", targetFile, canKill, processId, $"{exeFile} {arguments}"); var solution = SolutionDirectoryFinder.Find(key); return new(temp, key, exe, arguments, canKill, process, solution);