Const
Not used for writing log messages. Specifies that a logging provider should log all messages.
Logs a message that describes an unrecoverable application or system crash, or a catastrophic failure that requires immediate attention.
Logs that are used for interactive investigation during development. These logs should primarily contain information useful for debugging and have no long-term value.
Logs a message that highlights when the current flow of execution has failed or stopped due to a failure. These should indicate a failure in the current execution, not an entire system wide failure.
Logs that track the general flow of the application. These logs should have long-term value.
Not used for writing log messages. Specifies that a logging provider should not log any messages.
Logs a message that describes a terminal failure that indicates that the system is unstable and may not be functioning correctly.
Logs that contain the detailed trace messages. These messages may contain sensitive data. These messages should be disabled by default and should never be enabled in a production environment due to the possible sensitive data that they might contain.
Logs that contain the most detailed messages. These messages may contain sensitive data. These messages should be disabled by default and should never be enabled in a production environment due to the possible sensitive data that they might contain.
Logs a message that highlights an abnormal or unexpected event occurred, but did not otherwise cause the execution to stop.
Generated using TypeDoc
Defines the logging debug levels.