Want to turn your plain log file output into a colorful format for easier reading? Try bat instead of cat:
```
cat /path/to/app.log # old
bat /path/to/app.log # wow
```
BTW, the `bat` or `batcat` is written in Rust lang and needs to be installed using your favorite package manager like APT, DNF, APK, PKG, port, etc on your Linux, macOS or Unix. Examples https://www.cyberciti.biz/open-source/bat-linux-command-a-cat-clone-with-written-in-rust/ It is a free app and I love it. Give it a try.
