UNPKG

@codai/memorai-core

Version:

Simplified advanced memory engine - no tiers, just powerful semantic search with persistence

18 lines 522 B
/** * Simple logging utility for the Memorai core package */ declare class Logger { private static instance; private logLevel; private constructor(); static getInstance(): Logger; private shouldLog; private log; debug(message: string, data?: unknown): void; info(message: string, data?: unknown): void; warn(message: string, data?: unknown): void; error(message: string, data?: unknown): void; } export declare const logger: Logger; export {}; //# sourceMappingURL=logger.d.ts.map