When a log changes between deployments, or two systems were supposed to write the same stream, the difference is the story. Log File Diff compares two log files and shows the exact lines that differ — content only in the first file, content only in the second, and the matching context between them — in a familiar unified-diff view with minus-prefixed, plus-prefixed, and space-prefixed lines just like a code diff tool.
The comparison runs as a line-by-line longest-common-subsequence alignment entirely in your browser, the same class of algorithm behind most code-diff tools, so lines that moved around are still recognized as unchanged context rather than being reported as a spurious remove-and-add pair. An Ignore whitespace toggle trims each line before comparing, which helps when the only difference between two files is trailing spaces or inconsistent indentation introduced by a different exporter.
Summary counts above the diff show exactly how many lines were removed, added, or left unchanged, and those counts always match what is rendered below them line for line. For files too large to align in full (the comparison is capped so the page stays responsive), the tool automatically falls back to a count-based comparison: it tallies how many times each distinct line appears in file A versus file B and reports the surplus on each side, clearly labelled as a line-count comparison rather than a full alignment, so it is never mistaken for a true diff.