Configuration options for the FrontendLogger

interface FrontendLoggerOpts {
    appName: string;
    console?: Pick<Console, LogLevel>;
    env?: "production" | "development";
    level?: LogLevel;
}

Hierarchy

  • Record<string, unknown>
    • FrontendLoggerOpts

Properties

appName: string

The name of the application

console?: Pick<Console, LogLevel>

Console to log to (when not provided, defaults to the global)

env?: "production" | "development"

The environment the application is running in

level?: LogLevel

Current log level

Generated using TypeDoc