ltcache
Version:
A lightweight, in-memory caching library - like Redis but much simpler. Features TTL support, concurrent request handling, and comprehensive statistics. Perfect for Node.js applications that need fast caching without the complexity of Redis.
10 lines • 393 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.logger = void 0;
exports.logger = {
debug: (msg) => console.log(`[ltcache] DEBUG ${msg}`),
info: (msg) => console.log(`[ltcache] INFO ${msg}`),
warn: (msg) => console.warn(`[ltcache] WARN ${msg}`),
error: (msg) => console.error(`[ltcache] ERROR ${msg}`),
};
//# sourceMappingURL=logger.js.map