Skip to content

Commit eea6562

Browse files
authored
Merge pull request #208 from drivardxrm/feat/ptvfilter-adjust
Added switches to the PTVFilter object when certain Filter values are…
2 parents 5d0932d + 02f09c3 commit eea6562

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

PluginTraceViewer/PluginTraceViewer.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,18 +164,22 @@ private PTVFilter ParseFilterArgs(string strarg)
164164
{
165165
case "plugin":
166166
result.Plugin = value;
167+
result.FilterPlugin = true;
167168
break;
168169

169170
case "message":
170171
result.Message = value;
172+
result.FilterMessage = true;
171173
break;
172174

173175
case "entity":
174176
result.Entity = value;
177+
result.FilterEntity = true;
175178
break;
176179

177180
case "correlationid":
178181
result.CorrelationId = value;
182+
result.FilterCorr = true;
179183
break;
180184

181185
case PluginTraceLog.RequestId:

0 commit comments

Comments
 (0)