Interface LogOptions

Options for configuring logging

interface LogOptions {
    name?: string;
    silent?: boolean;
    type?: "json" | "pretty" | "hidden";
}

Properties

Properties

name?: string

Name of the logger

silent?: boolean

Whether to silence all logging

type?: "json" | "pretty" | "hidden"

Type of logging output