Client-friendly summary
Python logging library with production-grade security features: sensitive data masking, rate limiting, log rotation, async logging, JSON formatting, and a CLI log viewer.
Business use case: Production Python applications that handle sensitive data — PII, credentials, API keys — and need audit-ready logs. Particularly useful in regulated industries where log security is a compliance requirement.
Technical summary: Extends Python's standard logging module with a security-first layer. Implements regex-based sensitive data scrubbing, token bucket rate limiting, rotating file handlers, structured JSON output, and async emission for high-throughput services.
