Provides a configurable Logging API to prevent uses of console.log statements.
console.log
Typical usage is:
import { loggerForName } from "apprt-core/Logger";const LOG = loggerForName("mybundle/MyFile");// now add logging statementsLOG.info("Component started"); Copy
import { loggerForName } from "apprt-core/Logger";const LOG = loggerForName("mybundle/MyFile");// now add logging statementsLOG.info("Component started");
Provides a configurable Logging API to prevent uses of
console.log
statements.Example
Typical usage is: