Log level for BasicCardLogger.
Namespace: BasicCard.LoggingAssembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)
Syntax
C# |
---|
[SerializableAttribute] [CLSCompliantAttribute(true)] public enum BasicCardLogLevel |
Visual Basic |
---|
<SerializableAttribute> <CLSCompliantAttribute(true)> Public Enumeration BasicCardLogLevel |
Visual C++ |
---|
[SerializableAttribute] [CLSCompliantAttribute(true)] public enum class BasicCardLogLevel |
F# |
---|
[<SerializableAttribute>] [<CLSCompliantAttribute(true)>] type BasicCardLogLevel |
Members
Member name | Value | Description | |
---|---|---|---|
Off | 2147483647 | Off is a special level that can be used to turn off logging. This level is initialized to Integer.MaxValue. | |
Severe | 1000 | Severe is a message level indicating a serious failure. This level is initialized to 1000. | |
Warning | 900 | Warning is a message level indicating a potential problem. This level is initialized to 900. | |
Info | 800 | Info is a message level for informational messages. This level is initialized to 800. | |
Config | 700 | Config is a message level for static configuration messages. This level is initialized to 700. | |
Reader | 600 | Reader is a message level for card reader related messages. This level is initialized to 600. | |
Fine | 500 | Fine is a message level providing tracing information. This level is initialized to 500. | |
Finer | 400 | Finer is a message level providing detailed tracing information. This level is initialized to 400. | |
Finest | 300 | Finest is a message level providing highly detailed tracing information. This level is initialized to 300. | |
All | -2147483648 | ALL indicates that all messages should be logged. This level is initialized to Integer.MIN_VALUE. |