RainwayLogLevel enumeration
Rainway SDK log levels
public enum RainwayLogLevel
Values
name | value | description |
---|---|---|
Silent | 0 | This level is never logged to. It is useful as a "minimum log level" if you want to silence all logging. |
Error | 1 | Logs that highlight when the current flow of execution is stopped due to a failure. These are usually unrecoverable. |
Warning | 2 | Logs that highlight an abnormal or unexpected event or handled error in the application flow, but do not otherwise cause the application execution to stop. |
Info | 3 | Logs that track the general flow of the application. These logs should have long-term value. |
Debug | 4 | Logs that are used for interactive investigation during development. These logs should primarily contain information useful for debugging and have no long-term value. |
Trace | 5 | Logs that contain the most detailed messages. These messages may contain sensitive application data. These messages are disabled by default and should never be enabled in a production environment. |
See Also
- namespace Rainway.SDK