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

    Interface IDbgProviderConfig

    Defines the configuration options for the console debug provider.

    import { $Dbg } from "@nevware21/ts-debug";
    import { createConsoleProvider } 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 = createConsoleProvider(dbgConfig);
    $Dbg.addProvider(provider);
    interface IDbgProviderConfig {
        lvl?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    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
    };