Enum LogLevels
- Namespace
- StockSharp.Logging
- Assembly
- StockSharp.Logging.dll
Levels of log messages LogMessage.
[DataContract]
public enum LogLevels
- Extension Methods
Fields
[EnumMember] [Display(ResourceType = typeof(LocalizedStrings), Name = "Debug")] Debug = 2
Debug message, information, warnings and errors.
[EnumMember] [Display(ResourceType = typeof(LocalizedStrings), Name = "Errors")] Error = 5
Errors only.
[EnumMember] [Display(ResourceType = typeof(LocalizedStrings), Name = "Info")] Info = 3
Information, warnings and errors.
[Display(ResourceType = typeof(LocalizedStrings), Name = "Inherited")] [EnumMember] Inherit = 0
To use the logging level of the container.
[EnumMember] [Display(ResourceType = typeof(LocalizedStrings), Name = "Off")] Off = 6
Logs off.
[EnumMember] [Display(ResourceType = typeof(LocalizedStrings), Name = "Verbose")] Verbose = 1
Verbose message, debug message, information, warnings and errors.
[EnumMember] [Display(ResourceType = typeof(LocalizedStrings), Name = "Warnings")] Warning = 4
Warnings and errors.