UNPKG

@wgtechlabs/log-engine

Version:

A lightweight, security-first logging utility with automatic data redaction for Node.js applications - the first logging library with built-in PII protection.

11 lines 436 B
/** * Logger module exports * Provides centralized access to all logging functionality */ export { Logger } from './core.js'; export { LoggerConfigManager } from './config.js'; export { LogFilter } from './filtering.js'; export { EnvironmentDetector } from './environment.js'; // Backward compatibility - maintain the original Logger class interface export { Logger as CoreLogger } from './core.js'; //# sourceMappingURL=index.js.map