UNPKG

@sentzunhat/zacatl

Version:

A modular, high-performance TypeScript microservice framework for Node.js, featuring layered architecture, dependency injection, and robust validation for building scalable APIs and distributed systems.

9 lines (8 loc) 221 B
export const logger = { log: (input: { level: "info" | "error" | "warn" | "debug"; action: string; msg: string; }): void => console[input.level](`🧪 [${input.action}] unit tests - ${input.msg}`), };