Class LogMessage
Log message as posted by the Unity API
Namespace: i5.Toolkit.Core.AppConsole
Assembly: cs.temp.dll.dll
Syntax
public class LogMessage : ILogMessage, INotificationMessage
Constructors
LogMessage(String, String, LogType)
Creates a new log message instance
Declaration
public LogMessage(string content, string stackTrace, LogType logType)
Parameters
| Type | Name | Description |
|---|---|---|
| String | content | The content of the log message |
| String | stackTrace | The stack trace of the log message |
| LogType | logType | The typ of log message |
Properties
Content
Content of the log message
Declaration
public string Content { get; }
Property Value
| Type | Description |
|---|---|
| String |
LogType
Type of the log message
Declaration
public LogType LogType { get; }
Property Value
| Type | Description |
|---|---|
| LogType |
StackTrace
Stack trace of the log message
Declaration
public string StackTrace { get; }
Property Value
| Type | Description |
|---|---|
| String |
Implements
INotificationMessage