Skip to content

Latest commit

 

History

History
94 lines (62 loc) · 1.73 KB

File metadata and controls

94 lines (62 loc) · 1.73 KB

📊 Log Diff Analyzer

Log Diff Analyzer is a simple tool to compare two log files and quickly detect differences.

Paste two logs (before and after), and the tool will highlight:

  • New lines
  • Removed lines
  • Error lines

This is useful for debugging issues after:

  • Deployments
  • Configuration changes
  • Regression tests
  • Production incidents

Built with Python + Streamlit.


🚀 Demo

Try the tool online:

https://log-diff-analyzer.streamlit.app


❓ Why This Tool Exists

Example use cases

  • Compare logs before and after deployment
  • Detect new errors in CI logs
  • Identify differences between two runs

✨ Features

  • Compare two logs instantly
  • Detect newly added log lines
  • Highlight potential error lines
  • Simple and fast UI

🖥 Run Locally

Install dependencies

pip install -r requirements.txt

Run the Streamlit app

streamlit run app.py

Then open your browser:

http://localhost:8501

📁 Project Structure

logcat-error-filter
│
├── app.py
├── requirements.txt
└── README.md

🔍 Search Keywords

This project targets common developer searches such as:

  • log diff tool
  • compare logs online
  • compare two log files
  • detect log differences
  • debugging log comparison

🔗 Related Tools

You may also be interested in:

These tools help developers debug logs more efficiently.