Skip to content

Commit 30c60b8

Browse files
committed
* Added missing logs
1 parent 87c34e7 commit 30c60b8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

MemPlus/Views/Windows/ProcessAnalyzerWindow.xaml.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,13 @@ private void BtnRefresh_OnClick(object sender, RoutedEventArgs e)
123123
/// </summary>
124124
private void RefreshProcessDetails()
125125
{
126+
_logController.AddLog(new ProcessLog("Refreshing process details"));
126127
LsvProcessList.Items.Clear();
127128
foreach (ProcessDetail pd in Utils.GetProcessDetails(_logController))
128129
{
129130
LsvProcessList.Items.Add(pd);
130131
}
132+
_logController.AddLog(new ProcessLog("Done refreshing process details"));
131133
}
132134

133135
/// <summary>

0 commit comments

Comments
 (0)