UNPKG

@rollercoaster-dev/rd-logger

Version:

A neurodivergent-friendly logger for Rollercoaster.dev projects

11 lines (10 loc) 305 B
import { Formatter } from './formatter.interface'; /** * JSON formatter for the logger */ export declare class JsonFormatter implements Formatter { /** * Format a log message as JSON */ format(level: string, message: string, timestamp: string, context: Record<string, any>): string; }