Skip to content

Commit

Permalink
fix(InMemorySink): remove leading and trailing white spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
pkuehnel committed Feb 7, 2025
1 parent acd3e63 commit b4ad7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PkSoftwareService.Custom.Backend/InMemorySink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public List<string> GetLogs()
{
lock (_syncRoot)
{
return _logMessages.ToList();
return _logMessages.Select(x => x.Trim()).ToList();
}
}

Expand Down

0 comments on commit b4ad7b4

Please sign in to comment.