UNPKG

morpheus4j

Version:

Morpheus is a migration tool for Neo4j. It aims to be a simple and intuitive way to migrate your database.

17 lines (16 loc) 566 B
type LogMessage = Error | string; export declare class Logger { private static logLevel; private static useJson; static debug(message: LogMessage): void; static error(message: LogMessage, error?: Error): void; static info(message: LogMessage): void; static initialize(useJson?: boolean, debug?: boolean): void; static isDebugEnabled(): boolean; static warn(message: LogMessage): void; private static formatMessage; private static getColorForLevel; private static getLevelPrefix; private static shouldLog; } export {};