Skip to content

Commit b08853b

Browse files
committed
Fix log write to append line
1 parent 5385735 commit b08853b

File tree

1 file changed

+1
-1
lines changed
  • src/GitVersionCore/Logging

1 file changed

+1
-1
lines changed

src/GitVersionCore/Logging/Log.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public void Write(Verbosity verbosity, LogLevel level, string format, params obj
4141
appender.WriteTo(level, formattedString);
4242
}
4343

44-
sb.Append(formattedString);
44+
sb.AppendLine(formattedString);
4545
}
4646

4747
public IDisposable IndentLog(string operationDescription)

0 commit comments

Comments
 (0)