Enum LogLevel
- Namespace
- WhalesSecret.TradeScriptLib.API.LoggingV1
- Assembly
- WhalesSecret.TradeScriptLib.dll
Trade script logging levels version 1.0.0.
public enum LogLevel
- Extension Methods
Fields
Trace = 0
Most detailed logging that contains all the information the trade script can provide.
Debug = 1
Useful information for the purpose of debugging the trade script behavior.
Info = 2
Information useful for common users.
Warn = 3
Information about an unexpected, non-standard, or potentially dangerous event that does not necessarily mean an error in the execution of the script, but should be examined.
Error = 4
Information about an error that should not happen, but is not fatal for the execution of the script which can continue to operate.
Fatal = 5
Information about a fatal error that lead to termination of the trade script execution.
None = 6
Logging is disabled.