UNPKG

@toreda/log

Version:

Lightweight TypeScript logger with flexible custom transports.

12 lines (11 loc) 289 B
/** * Data structure provided to action execution for * each log message matching its transport log level. */ export interface Message { /** UTC Timestamp when log message was originally created. */ date: number; level: number; message: unknown[]; path: string[]; }