Class BuildLogEntry
A single log entry from a build execution.
public class BuildLogEntry
- Inheritance
-
BuildLogEntry
- Inherited Members
Properties
Build
The build this entry belongs to.
public Build Build { get; set; }
Property Value
BuildId
ID of the build this entry belongs to.
public int BuildId { get; set; }
Property Value
Id
Unique ID. Using long to support high-volume logging.
public long Id { get; set; }
Property Value
Message
The log message content.
public string Message { get; set; }
Property Value
Sequence
Sequence number for ordering within a build.
public int Sequence { get; set; }
Property Value
StepName
Build step name if this entry relates to a step.
public string? StepName { get; set; }
Property Value
Timestamp
When this entry was created.
public DateTime Timestamp { get; set; }
Property Value
Type
Type of log entry.
public LogEntryType Type { get; set; }