Table of Contents

Enum LogLevel

Namespace
Homa.Sdk.Logging
Assembly
Homa.Sdk.Logging.Abstractions.dll

Indicates the severity of a logged message

[Serializable]
public enum LogLevel

Fields

Error = 3000

Communicates a failure that interrupted program execution, or an is irrecoverable error.

Info = 1000

Used to report to the user of an API that a requested action has happened with the expected outcome.

Trace = 0

Used for process debugging, they inform the user about the autonomous process or sub-steps within a process.

Warning = 2000

Describes a problem that was encountered, but execution can continue.