Home > rainway-sdk > RainwayLogLevel
RainwayLogLevel enum
Rainway's logging severity levels.
Signature:
export declare enum RainwayLogLevel
Enumeration Members
Member | Value | Description |
---|---|---|
Critical | 5 | Logs that describe an unrecoverable application or system crash, or a catastrophic failure that requires immediate attention. |
Debug | 1 | Logs that are used for interactive investigation during development. These logs should primarily contain information useful for debugging and have no long-term value. |
Error | 4 | Logs that highlight when the current flow of execution is stopped due to a failure. These should indicate a failure in the current activity, not an application-wide failure. |
Information | 2 | Logs that track the general flow of the application. These logs should have long-term value. |
Silent | 6 | This level is never logged to. It is useful as a "minimum log level" if you want to silence all logging. |
Trace | 0 | 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. |
Warning | 3 | Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the application execution to stop. |