Struct LogEntry
Contains a single log entry and config regarding the entry.
Inherited Members
Namespace: IdleKit.Core
Assembly: cs.temp.dll.dll
Syntax
public struct LogEntry
Constructors
LogEntry(ILogCategory, LogSeverity, String, String)
Declaration
public LogEntry(ILogCategory category, LogSeverity severity, string message, string stackTrace)
Parameters
Type | Name | Description |
---|---|---|
ILogCategory | category | |
LogSeverity | severity | |
String | message | |
String | stackTrace |
Properties
Category
The ILogCategory for this entry.
Declaration
public ILogCategory Category { get; set; }
Property Value
Type | Description |
---|---|
ILogCategory |
Message
The message to output to the console.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
String |
Severity
The LogSeverity of this entry.
Declaration
public LogSeverity Severity { get; set; }
Property Value
Type | Description |
---|---|
LogSeverity |
StackTrace
The stack trace associated with this entry.
Declaration
public string StackTrace { get; set; }
Property Value
Type | Description |
---|---|
String |