LogLevel Enumeration

Supported log levels for ILogger devices

Definition

Namespace: ASCOM.Common.Interfaces
Assembly: ASCOM.Common (in ASCOM.Common.dll) Version: 3.0.0-rc.1+86c25ce733aebb4d8b1b8a62e84770ea5e972bea
C#
public enum LogLevel

Members

Verbose0 This level logs out everything. It may contain sensitive information. This will create a lot of noise in the logs and is disabled by default.
Debug1 Log out information that is useful for debugging and development. This generally should be used temporarily.
Information2 Log the general flow and behavior. This should typically be the default level.
Warning3 Something abnormal, unexpected or bad has occurred but the application and all functions are still running
Error4 Something has failed, however the application is still running, possibly in a degraded state. Some user intervention may be required to resume full operation.
Fatal5 A critical error has occurred. The application cannot recover, it has crashed or is otherwise not recoverable. It will require immediate attention.

Version Information

.NET

Supported in: .NET 8.0 and later

.NET Standard

Supported in: 2.0

See Also