@pact-foundation/pact-cli
Version:
Broker CLI for @pact-foundation/pact
10 lines (9 loc) • 434 B
TypeScript
export type LogLevel = 'debug' | 'error' | 'info' | 'trace' | 'warn';
export type Logger = {
pactCrash: (message: string, context?: string) => void;
error: (message: string, context?: string) => void;
warn: (message: string, context?: string) => void;
info: (message: string, context?: string) => void;
debug: (message: string, context?: string) => void;
trace: (message: string, context?: string) => void;
};