Class WriteLogEntryInput
Data transfer object representing a request to write a log entry.
Inherited Members
Namespace: Serenity.Logging.Application.UseCases.Dto
Assembly: Serenity.Global.Application.dll
Syntax
public class WriteLogEntryInput
Constructors
WriteLogEntryInput()
Declaration
public WriteLogEntryInput()
Fields
Category
Declaration
public string Category
Field Value
| Type | Description |
|---|---|
| string | The category of the log entry. |
Exception
Declaration
public Exception Exception
Field Value
| Type | Description |
|---|---|
| Exception | The exception associated with the log entry, if any. |
Message
Declaration
public string Message
Field Value
| Type | Description |
|---|---|
| string | The message content of the log entry. |
Severity
Declaration
public LogSeverity Severity
Field Value
| Type | Description |
|---|---|
| LogSeverity | The severity level of the log entry. |
Tags
Declaration
public string[] Tags
Field Value
| Type | Description |
|---|---|
| string[] | Tags associated with the log entry. |