 | LogMsgType Enumeration |
Different log message types.
Namespace:
Koden.Utils.Logger
Assembly:
Koden.Utils.Logger (in Koden.Utils.Logger.dll) Version: 1.0.0.0 (1.0.0.0)
SyntaxPublic Enumeration LogMsgType
public enum class LogMsgType
Members
| Member name | Value | Description |
---|
| Error | 1 |
An error event. This indicates a significant problem the user should know about;
usually a loss of functionality or data.
|
| Warning | 2 |
A warning event. This indicates a problem that is not immediately significant,
but that may signify conditions that could cause future problems.
|
| Information | 4 |
An information event. This indicates a significant, successful operation.
|
| SuccessAudit | 8 |
A success audit event. This indicates a security event that occurs when an audited
access attempt is successful; for example, logging on successfully.
|
| FailureAudit | 16 |
A failure audit event. This indicates a security event that occurs when an audited
access attempt fails; for example, a failed attempt to open a file.
|
| Debug | 32 |
A debug message - used during development
|
| Separator | 64 |
A separator record - in an HTMLT table - a Header
|
| Verbose | 128 |
A verbose record - used when extra logging is needed
|
| Success | 256 |
A success message
|
| Empty | 512 |
An empty line - no Date/Time logged, just the text message or a return
|
See Also