Table of Contents

Class BuildLogEntry

Namespace
Ando.Server.Models
Assembly
Ando.Server.dll

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

Build

BuildId

ID of the build this entry belongs to.

public int BuildId { get; set; }

Property Value

int

Id

Unique ID. Using long to support high-volume logging.

public long Id { get; set; }

Property Value

long

Message

The log message content.

public string Message { get; set; }

Property Value

string

Sequence

Sequence number for ordering within a build.

public int Sequence { get; set; }

Property Value

int

StepName

Build step name if this entry relates to a step.

public string? StepName { get; set; }

Property Value

string

Timestamp

When this entry was created.

public DateTime Timestamp { get; set; }

Property Value

DateTime

Type

Type of log entry.

public LogEntryType Type { get; set; }

Property Value

LogEntryType