Skip to content

Commit eb77580

Browse files
committed
fix: Write out Raw Log without additional newline
1 parent e9dcccf commit eb77580

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PostCodeSerialMonitor/ViewModels/MainWindowViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ private async Task SaveLogAsync()
219219
sb.AppendLine("=== Raw Log ===");
220220
foreach (var entry in RawLogEntries)
221221
{
222-
sb.AppendLine(entry.RawText);
222+
sb.Append(entry.RawText);
223223
}
224224
sb.AppendLine();
225225

0 commit comments

Comments
 (0)