Append-only sequence of records on disk. Many distributed systems can be built around append-only logs.
Write-ahead-logs are used with databases where each database first writes to a log before changing a table for durability.
We already know how logs are used for Replication.
In many such cases, logs are the database, they decouple systems, they power several database data structures, enable recovery, and provide ordering.