Table of Contents

Enum EventSeverity

Namespace
WhalesSecret.TradeScriptLib.API.EventV1
Assembly
WhalesSecret.TradeScriptLib.dll

Severity levels of trade script events.

public enum EventSeverity
Extension Methods

Fields

Trace = 0

Events with the lowest importance that describe something in a very detailed way.

Debug = 1

Events that provide helpful information about internal workings of the script.

Info = 2

Events that are intended for consumption by all types of users.

Warn = 3

Events that require an attention from the user and may require some action to be performed by the user.

Error = 4

Events that inform the user about a non-fatal error in the operation of the script. The script emitting event of this severity should be able to continue its operation, but some functionality may be limited or suboptimal.

Fatal = 5

Events that require an immediate attention and action from the user as they prevent the script to operate.