UNPKG

@livy/util

Version:
39 lines (38 loc) 1.43 kB
import { LogLevel } from '@livy/contracts/lib/log-level'; import { LogRecord } from '@livy/contracts/lib/log-record'; import { AbstractBatchHandler } from './abstract-batch-handler'; export interface AbstractLevelBubbleHandlerOptions { /** * The minimum activation level for this handler */ level: LogLevel; /** * Whether this handler allows bubbling of records */ bubble: boolean; } declare const AbstractLevelBubbleHandler_base: typeof AbstractBatchHandler & { new (...args: any[]): { level: "error" | "alert" | "debug" | "info" | "notice" | "warning" | "critical" | "emergency"; isHandling(level: "error" | "alert" | "debug" | "info" | "notice" | "warning" | "critical" | "emergency"): boolean; }; }; /** * Base Handler class providing basic a `bubble` option and basic `level` support */ export declare abstract class AbstractLevelBubbleHandler extends AbstractLevelBubbleHandler_base { /** * Whether this handler allows bubbling of records */ bubble: boolean; /** * @param level The minimum logging level at which this handler will be triggered * @param bubble Whether the messages that are handled can bubble up the stack or not */ constructor({ level, bubble }?: Partial<AbstractLevelBubbleHandlerOptions>); /** * @inheritdoc */ abstract handle(record: LogRecord): Promise<boolean | void>; } export {};