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

    Interface IDbgMemoryLog

    Defines the in-memory log structure for the log messages.

    interface IDbgMemoryLog {
        data?: any;
        lvl: number;
        message: string;
        name: string;
        t: Date;
        usr: DbgContextValues;
    }
    Index

    Properties

    Properties

    data?: any

    An Optional data component that should be reported with the message

    lvl: number

    Identifies the logging level of this log message

    message: string

    The message reported as part of the log message

    name: string

    The name of the current logger, based on the names of the current debug instance and any parent.

    t: Date

    The Date / time that the log entry was recorded

    usr: DbgContextValues

    Optional user context values that are passed along to the provider