Interface LoggingConfig

interface LoggingConfig {
    level: "error" | "warn" | "info" | "debug";
    format: "json" | "text";
    queries: boolean;
}

Properties

Properties

level: "error" | "warn" | "info" | "debug"
format: "json" | "text"
queries: boolean