Table of Contents

Interface ILogEntry

Namespace
OrpheusInterfaces.Logging
Assembly
OrpheusInterfaces.dll

Represents a single log entry.

public interface ILogEntry

Properties

Message

Log entry message text.

string Message { get; set; }

Property Value

string

StackTrace

Stack trace, if applicable.

string StackTrace { get; set; }

Property Value

string

TimeStamp

Timestamp when the entry was created.

DateTime TimeStamp { get; set; }

Property Value

DateTime

Type

Log entry severity type.

string Type { get; set; }

Property Value

string