UNPKG

airship-server

Version:

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

8 lines (7 loc) 386 B
import BaseLogger from '../domain/BaseLogger'; export default class ConsoleLogger implements 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; private prepareLog(color, tag, prefix, data?, recursiveDepth?); }