Enum LogLevel
Indicates the severity of a logged message
[Serializable]
public enum LogLevel
Fields
Error = 3000Communicates a failure that interrupted program execution, or an is irrecoverable error.
Info = 1000Used to report to the user of an API that a requested action has happened with the expected outcome.
Trace = 0Used for process debugging, they inform the user about the autonomous process or sub-steps within a process.
Warning = 2000Describes a problem that was encountered, but execution can continue.