Enum LogLevel
Different levels of logging. Higher level have higher numerical value and thus are more important.
Namespace: Unity.Cloud.Common
Assembly: Unity.Cloud.Common.dll
Syntax
public enum LogLevel
Fields
Name | Description |
---|---|
Critical | Critical log level. Logs that describe an unrecoverable application or system crash, or a catastrophic failure that requires immediate attention. |
Debug | Debug log level. Logs that are used for interactive investigation during development. |
Error | Error log level. Logs that highlight when the current flow of execution is stopped due to a failure. |
Information | Information log level. Logs that track the general flow of the application. |
None | None log level. Not used for writing log messages. Specifies that a ILogOutput should not write any messages. |
Trace | Trace log level. Logs that contain the most detailed messages. |
Warning | Warning log level. Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the application execution to stop. |