๐งช Log Formatter
Parse and format logs into readable tables
Log Input
Advertisement
About Log Formatter
Log Formatter parses unstructured log data and displays it in a clean, organized table format. It automatically detects log levels, timestamps, and messages from various log formats including JSON logs, Apache-style logs, and custom formats.
Features
- โParse multiple log formats (JSON, Apache, etc.)
- โAuto-detect timestamps and log levels
- โFilter by log level (DEBUG, INFO, WARN, ERROR)
- โColor-coded by severity
- โHandle multi-line logs
- โWorks with large log files
How to Use
- 1.Paste your logs into the input field
- 2.Logs are automatically parsed and formatted
- 3.Use the filter dropdown to show specific levels
- 4.Click "Load Example Logs" to see it in action
Supported Log Formats
Structured JSON:
{"timestamp": "2024-01-15 10:23:45", "level": "INFO", "message": "Server started"}Bracketed format:
[2024-01-15 10:23:45] INFO: Server startedSpace-separated:
2024-01-15T10:23:45Z INFO Server started