@nevware21/ts-debug
    Preparing search index...

    Interface IDbgLog

    Interface for the debugging logging functions that are available for instances of this interface.

    interface IDbgLog {
        critical: DbgLogFunc;
        debug: DbgLogFunc;
        error: DbgLogFunc;
        info: DbgLogFunc;
        terminal: DbgLogFunc;
        trace: DbgLogFunc;
        verbose: DbgLogFunc;
        warn: DbgLogFunc;
    }
    Index

    Properties

    critical: DbgLogFunc

    Logs a message that describes an unrecoverable application or system crash, or a catastrophic failure that requires immediate attention.

    The basic message to be reported

    An Optional data component that should be reported with the message

    debug: DbgLogFunc

    Logs that are used for interactive investigation during development. These logs should primarily contain information useful for debugging and have no long-term value.

    The basic message to be reported

    An Optional data component that should be reported with the message

    error: DbgLogFunc

    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.

    The basic message to be reported

    An Optional data component that should be reported with the message

    Logs that track the general flow of the application. These logs should have long-term value.

    The basic message to be reported

    An Optional data component that should be reported with the message

    terminal: DbgLogFunc

    Logs a message that describes a terminal failure that indicates that the system is unstable and may not be functioning correctly.

    The basic message to be reported

    An Optional data component that should be reported with the message

    trace: DbgLogFunc

    Logs that contain the detailed race 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.

    The basic message to be reported

    An Optional data component that should be reported with the message

    verbose: DbgLogFunc

    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.

    The basic message to be reported

    An Optional data component that should be reported with the message

    Logs a message that highlights an abnormal or unexpected event occurred, but did not otherwise cause the execution to stop.

    The basic message to be reported

    An Optional data component that should be reported with the message