UNPKG

@lxdhub/common

Version:

Display, search and copy LXD-images using a web interface.

17 lines (16 loc) 418 B
import { LogType } from '.'; /** * The Winston Logger Strategy */ export declare class WinstonLogger { private context; private level; private logger; constructor(context: string, level?: LogType); log(message: string): void; info(message: string): void; silly(message: string): void; warn(message: string): void; error(message: string): void; debug(message: string): void; }