Table of Contents

Enum LogLevel

Namespace
RisingV.Shared.Logging
Assembly
RisingV.Shared.dll

Represents the different levels of logging that can be used in the application.

[Flags]
public enum LogLevel
Extension Methods

Fields

All = Fatal | Error | Warning | Message | Info | Debug | Fine

All log levels.

Debug = 32

A message that would likely only interest a developer.

Error = 2

An error has occured, but can be recovered from.

Fatal = 1

A fatal error has occurred, which cannot be recovered from.

Fine = 64

A message that would likely only interest a developer, but is more verbose than Debug.

Info = 16

A message of low importance.

Message = 8

An important message that should be displayed to the user.

None = 0
Warning = 4

A warning has been produced, but does not necessarily mean that something wrong has happened.