igcv3 - v1.1.0
    Preparing search index...

    Variable ConfigLoggingSchemaConst

    ConfigLoggingSchema: ZodObject<
        {
            level: ZodUnion<
                [
                    ZodLiteral<"debug">,
                    ZodLiteral<"info">,
                    ZodLiteral<"warn">,
                    ZodLiteral<"error">,
                    ZodLiteral<"silent">,
                ],
            >;
            showIcons: ZodBoolean;
            showTimestamp: ZodBoolean;
            timestampFormat: ZodString;
            showPid: ZodBoolean;
            colors: ZodOptional<
                ZodObject<
                    {
                        debug: ZodOptional<ZodString>;
                        info: ZodOptional<ZodString>;
                        warn: ZodOptional<ZodString>;
                        error: ZodOptional<ZodString>;
                        success: ZodOptional<ZodString>;
                    },
                    "strip",
                    ZodTypeAny,
                    {
                        debug?: string;
                        info?: string;
                        warn?: string;
                        error?: string;
                        success?: string;
                    },
                    {
                        debug?: string;
                        info?: string;
                        warn?: string;
                        error?: string;
                        success?: string;
                    },
                >,
            >;
            icons: ZodOptional<
                ZodObject<
                    {
                        debug: ZodOptional<ZodString>;
                        info: ZodOptional<ZodString>;
                        warn: ZodOptional<ZodString>;
                        error: ZodOptional<ZodString>;
                        success: ZodOptional<ZodString>;
                    },
                    "strip",
                    ZodTypeAny,
                    {
                        debug?: string;
                        info?: string;
                        warn?: string;
                        error?: string;
                        success?: string;
                    },
                    {
                        debug?: string;
                        info?: string;
                        warn?: string;
                        error?: string;
                        success?: string;
                    },
                >,
            >;
        },
        "strip",
        ZodTypeAny,
        {
            level: "debug"
            | "info"
            | "warn"
            | "error"
            | "silent";
            showIcons: boolean;
            showTimestamp: boolean;
            timestampFormat: string;
            showPid: boolean;
            colors?: {
                debug?: string;
                info?: string;
                warn?: string;
                error?: string;
                success?: string;
            };
            icons?: {
                debug?: string;
                info?: string;
                warn?: string;
                error?: string;
                success?: string;
            };
        },
        {
            level: "debug"
            | "info"
            | "warn"
            | "error"
            | "silent";
            showIcons: boolean;
            showTimestamp: boolean;
            timestampFormat: string;
            showPid: boolean;
            colors?: {
                debug?: string;
                info?: string;
                warn?: string;
                error?: string;
                success?: string;
            };
            icons?: {
                debug?: string;
                info?: string;
                warn?: string;
                error?: string;
                success?: string;
            };
        },
    > = ...

    Logger configuration schema