 | LogLevel Enumeration |
Enumerates the possible log levels. Note that the relative
ordinal values of these definitions are used when deciding
to log an event when a specific LogLevel is
set. Only events with log levels less than or equal to the
current level will be logged.
Namespace:
Neon.Diagnostics
Assembly:
Neon.Common (in Neon.Common.dll) Version: 2.11.0
SyntaxPublic Enumeration LogLevel
public enum class LogLevel
Members
| Member name | Value | Description |
---|
| None | 0 |
Logging is disabled.
|
| Critical | 100 |
A critical or fatal error has been detected. These errors indicate that
a very serious failure has occurred that may have crashed the program or
at least seriousoly impacts its functioning.
|
| SError | 200 |
A security related error has occurred. Errors indicate a problem that may be
transient, be recovered from, or are perhaps more serious.
|
| Error | 300 |
An error has been detected. Errors indicate a problem that may be
transient, be recovered from, or are perhaps more serious.
|
| Warn | 400 |
An unusual condition has been detected that may ultimately lead to an error.
|
| SInfo | 500 |
Describes a non-error security operation or condition, such as a
a successful login or authentication.
|
| Info | 600 |
Describes a normal operation or condition.
|
| Transient | 700 |
Indicates a transient error, typically logged by a IRetryPolicy
implementations.
|
| Debug | 800 |
Describes detailed debug or diagnostic information.
|
See Also