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 consolelet dbgConfig = { lvl: DblLevel.Debug};let provider = createConsoleProvider(dbgConfig);$Dbg.addProvider(provider); Copy
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 consolelet dbgConfig = { lvl: DblLevel.Debug};let provider = createConsoleProvider(dbgConfig);$Dbg.addProvider(provider);
Optional
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 consolelet dbgConfig = { lvl: DblLevel.Debug}; Copy
// Set the config to enable debug messages to be displayed// to the consolelet dbgConfig = { lvl: DblLevel.Debug};
Generated using TypeDoc
Defines the configuration options for the console debug provider.
Example