Click or drag to resize

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)
Syntax
public enum LogMsgType
Members
  Member nameValueDescription
Error1 An error event. This indicates a significant problem the user should know about; usually a loss of functionality or data.
Warning2 A warning event. This indicates a problem that is not immediately significant, but that may signify conditions that could cause future problems.
Information4 An information event. This indicates a significant, successful operation.
SuccessAudit8 A success audit event. This indicates a security event that occurs when an audited access attempt is successful; for example, logging on successfully.
FailureAudit16 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.
Debug32 A debug message - used during development
Separator64 A separator record - in an HTMLT table - a Header
Verbose128 A verbose record - used when extra logging is needed
Success256 A success message
Empty512 An empty line - no Date/Time logged, just the text message or a return
See Also