@cfxlabsinc/b2b-services
    Preparing search index...

    Type Alias ServerLogger

    A pino-shaped logger.

    Declared here rather than imported from Fastify: the servers that supplied a real request logger are gone, so the only thing this type still describes is the console-backed logger below and the call sites that consume it.

    type ServerLogger = {
        child: () => ServerLogger;
        debug: LogFn;
        error: LogFn;
        fatal: LogFn;
        info: LogFn;
        level: string;
        silent: () => void;
        trace: LogFn;
        warn: LogFn;
    }
    Index
    child: () => ServerLogger
    debug: LogFn
    error: LogFn
    fatal: LogFn
    info: LogFn
    level: string
    silent: () => void
    trace: LogFn
    warn: LogFn