๐Ÿงช 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. 1.Paste your logs into the input field
  2. 2.Logs are automatically parsed and formatted
  3. 3.Use the filter dropdown to show specific levels
  4. 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 started

Space-separated:

2024-01-15T10:23:45Z INFO Server started