AntoineGa / Seq.App.Teams

Seq application for Microsoft Teams

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Properties to Exclude - multiline

richard-stafflink opened this issue · comments

Hi,

Properties to Exclude suggestion multiline - but that is not possible.
You this be changed to CSV, or change the textbox to a multiline version please?

image

Only work-around I found was to edit the JSON:

image

OR update:

ExcludedProperties = ExcludedProperties?.Split(new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries).ToList() ?? new List<string>(),

TO:
ExcludedProperties = ExcludedProperties?.Split(new[] { ' ', '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries).ToList() ?? new List<string>(),