UNPKG

airship-server

Version:

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

7 lines (5 loc) 248 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 }