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 531 B
/** * Formatter module exports * Provides centralized access to all formatting functionality */ export { MessageFormatter } from './message-formatter.js'; export { colors, colorScheme } from './colors.js'; export { getTimestampComponents, formatTimestamp } from './timestamp.js'; export { formatData, styleData } from './data-formatter.js'; // Backward compatibility - maintain the original LogFormatter class interface export { MessageFormatter as LogFormatter } from './message-formatter.js'; //# sourceMappingURL=index.js.map