Table of Contents

Enum LogLevel

Namespace
YndigoBlue.Velocity.Enums
Assembly
YndigoBlue.Velocity.dll

Specifies the severity level for logging messages.

public enum LogLevel

Fields

Debug = 1

Debug-level messages for detailed diagnostic information during development.

Info = 2

Informational messages about normal application operation.

Warn = 3

Warning messages indicating potential issues that don't prevent operation.

Error = 4

Error messages indicating failures that affect specific operations.

Fatal = 5

Fatal error messages indicating critical failures that may terminate the application.

Remarks

Log levels allow filtering and categorizing log output based on severity. Each level includes all messages at that level and higher severity levels.