DevTools loses your logs. We don't.
Real-time browser console & network logging to SQLite. Zero cloud. Zero tracking. 100% yours.
The Problem With DevTools
â Traditional Approach
- â Logs disappear on page reload
- â Can't correlate console errors with network failures
- â Debugging across multiple tabs is a nightmare
- â No way to query historical logs
- â DevTools sends data to cloud services (Sentry, etc)
â Browser Logger
- â Logs persist for 5 minutes (configurable)
- â Query console & network data with SQL
- â Unified SQLite database for all logging
- â Powerful REST API for custom queries
- â Zero cloud. Data stays on your machine.
Powerful Features
Everything you need to debug modern web applications effectively
Console Logging
Captures console.log, console.error, console.warn, console.info, console.debug plus uncaught errors and unhandled promise rejections.
Network Monitoring
Full request/response breakdown including DNS, connect, SSL, send, wait, and receive timing. Identify slow endpoints instantly.
SQLite Storage
All logs in a queryable database. Use powerful SQL to find exactly what you're looking for. No cloud required.
App Detection
Automatically tags logs with app name by port, meta tag, or global variable. Debug multiple apps simultaneously.
Performance
Less than 1ms overhead per console call. Batched transmission. Auto-cleanup prevents unbounded growth.
Privacy First
100% local-first. Zero cloud. Zero telemetry. No external API calls except localhost. Your data, your machine.
Get Started in 5 Minutes
Zero configuration. Just install, load, and start debugging.
Install Dependencies
bun install
# or: npm install Start Backend Server
bun run logger start
# Server listens on http://localhost:3001 Load Extension
chrome://extensions â Load unpacked â Select extension/ folder Start Debugging
bun run check errors # See recent errors
bun run check search "timeout" # Search logs
curl http://localhost:3001/api/logs?level=error # Query via API Privacy-First Design
Your debugging data stays on your machine. Always.
â What We Do
- â Store logs in local SQLite database
- â Run API on localhost only
- â Auto-cleanup after 5 minutes
- â Never touch external services
- â Open source & auditable
â What We Don't Do
- â Send data to cloud services
- â Track usage or analytics
- â Require authentication
- â Share data with third parties
- â Sell or monetize your data
100% Local
Open Source
MIT Licensed
Zero Telemetry
Ready to Debug Better?
Browser Logger is free, open source, and ready to use. No sign-up required.
Made by Cory Feign
Part of a suite of developer tools for modern web debugging