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

    Interface IDbgMemoryProviderConfig

    Defines the configuration options for the console debug provider.

    import { $Dbg } from "@nevware21/ts-debug";
    import { createMemoryProvider } from "@nevware21/ts-debug-provider";

    // Set the config to enable debug messages to be displayed
    // to the console
    let dbgConfig = {
    lvl: DblLevel.Debug
    };

    let provider = createMemoryProvider(dbgConfig);
    $Dbg.addProvider(provider);
    interface IDbgMemoryProviderConfig {
        count?: number;
        lvl?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    count?: number

    The maximum number of log message to retain in-memory.

    // Set the config to enable debug messages to be displayed
    // to the console
    let dbgConfig = {
    count: 100
    };
    lvl?: number

    The maximum log message level each provider will have its own default value.

    // Set the config to enable debug messages to be displayed
    // to the console
    let dbgConfig = {
    lvl: DblLevel.Debug
    };