Skip to content

Commit

Permalink
Update Tracker.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Jul 21, 2021
1 parent ab33739 commit 2905ea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DiffEngineTray/Tracker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit 2905ea8

Please sign in to comment.