Interface LogParams

interface LogParams {
    args?: Record<string, unknown>;
    message: string;
    module: string;
}

Properties

Properties

args?: Record<string, unknown>
message: string
module: string