ArchUnitTS - v2.2.0
    Preparing search index...

    Interface Logger

    interface Logger {
        debug(
            options: LoggingOptions | undefined,
            message: string,
            ...args: unknown[],
        ): void;
        info(
            options: LoggingOptions | undefined,
            message: string,
            ...args: unknown[],
        ): void;
        warn(
            options: LoggingOptions | undefined,
            message: string,
            ...args: unknown[],
        ): void;
        error(
            options: LoggingOptions | undefined,
            message: string,
            ...args: unknown[],
        ): void;
    }

    Implemented by

    Index

    Methods