Interface ILogMessage
- Namespace
 - Stride.Core.Diagnostics
 
- Assembly
 - Stride.Core.dll
 
The base interface for log messages used by the logging infrastructure.
public interface ILogMessage
  - Extension Methods
 
Properties
ExceptionInfo
Gets or sets the exception info.
ExceptionInfo? ExceptionInfo { get; }
  Property Value
Module
Gets or sets the module.
string? Module { get; set; }
  Property Value
- string
 The module.
Remarks
The module is an identifier for a logical part of the system. It can be a class name, a namespace or a regular string not linked to a code hierarchy.
Text
Gets or sets the text.
string Text { get; set; }
  Property Value
- string
 The text.
Type
Gets or sets the type of this message.
LogMessageType Type { get; set; }
  Property Value
- LogMessageType
 The type.