Interface LogsBySeverity

The structure for logs categorized by severity.

interface LogsBySeverity {
    error: Record<string, any>;
    info: Record<string, any>;
    success: Record<string, any>;
    warning: Record<string, any>;
}

Properties

error: Record<string, any>
info: Record<string, any>
success: Record<string, any>
warning: Record<string, any>