LiteLogger is a lightweight, native Apex logging package built for Salesforce SMBs who want durable, queryable error logs without the storage bill or configuration overhead of enterprise logging frameworks. Logs are captured via Platform Events for rollback safety and stored in a Big Object at near-zero storage cost, with a small reportable "hot tier" of recent activity. Built for admins and developers who want install-and-go logging with sane defaults.
Key features
Big Object primary storage: full log history at near-zero standard-storage cost
Tiny hot tier: last ~7 days in a reportable custom object, auto-archived nightly
Rollback-safe: logs published as platform events, survive failed transactions
Install-and-go: opinionated defaults, one settings object, data masking on by default
Fluent Apex API (Logger.error/warn/info/debug/fine, tagging, scenarios)
Use cases
Capturing error/exception logs that must survive transaction rollback
Nightly archival of aged log entries to cut standard-storage costs
Dashboards/reports on recent log activity (7-day hot tier)
Viewing log entries related to a specific record via a page component
Masking sensitive data (card numbers, SSNs) before it's stored in logs
Industries
All
Business need
Enterprise logging frameworks are too costly (storage fees) and too complex for small/mid-size Salesforce orgs that still need durable, auditable error logs
Requires
LiteLogger_Admin and LiteLogger_Viewer permission sets; org must support Big Objects and Platform Events
Compatible with
Lightning Experience (Lightning App, FlexiPages, LWCs); not stated as Classic-compatible
Support level
Standard
Screenshots
Product details
Compatibility
API version
Salesforce API v62.0. Lightning only; not stated as Classic-compatible.
Integrations required
Salesforce CLI (sf v2+); target org supporting Big Objects and Platform Events (all modern editions). No external services or named credentials.
Setup time
Under 30 minutes for a working install; up to 1 hour including nightly archive job scheduling and smoke testing
App details
Languages
English
Package type
Unlocked Package
Edition support
Enterprise, Unlimited, Developer (README states Big Objects/Platform Events supported on "all modern editions"; verify entitlement for Professional/Essentials)
Mobile compatible
Yes, Lightning App, FlexiPages, and LWCs
Security
Most classes are with sharing; access controlled via LiteLogger_Admin/Viewer permission sets. No explicit CRUD/FLS enforcement calls (e.g. stripInaccessible) found. Access relies on permission sets. Sensitive data masked by default before storage. Zero external callouts (100% native Apex).