zibri
    Preparing search index...

    The base configuration options shared by all logger transports.

    type BaseLoggerTransportConfig = {
        level: LogLevel;
        name: string;
        register: "directly" | "afterStartup";
    }
    Index

    Properties

    Properties

    level: LogLevel

    The log level at which the transport should be active.

    name: string

    The name of the transport.

    register: "directly" | "afterStartup"

    Whether to register the transport as soon as possible or after the startup of the app.

    This is useful if the transport eg. Depends on the database being available.