Raw logs are written for machines, not for eyes. Log Beautifier turns delimiter-dense lines into aligned column tables and word-wraps the long ones, so a quick scroll tells the story instead of a squint.
Pipe-separated blocks line up; long lines wrap on word boundaries, keeping your reading flow intact.
The tool works line by line, so it does not need to know your log's schema in advance. Any run of consecutive lines that each contain two or more " | " separators is treated as one table block: the widest value in each column across that block sets the padding width, so every separator in the block lines up vertically no matter how much the field lengths vary from row to row. Once a block ends — a line without a pipe separator breaks it — a fresh block starts on the next qualifying line, so unrelated pipe-formatted sections in the same paste are aligned independently rather than forced into one oversized table. Lines that are not part of a pipe block go through the word wrapper instead: text is split on whitespace and rebuilt greedily up to the chosen width, wrapping only between words (never inside a token), so a long stack trace path or URL stays whole even if it pushes a wrapped line past the target width. Continuation lines are indented so it is visually clear they belong to the line above.