UNPKG

airship-server

Version:

Airship is a framework for Node.JS & TypeScript that helps you to write big, scalable and maintainable API servers.

6 lines (5 loc) 250 B
export default interface BaseLogger { log(prefix: string, data?: any, recursiveDepth?: boolean): void; warn(prefix: string, data?: any, recursiveDepth?: boolean): void; error(prefix: string, data?: any, recursiveDepth?: boolean): void; }