# ERROR, WARN, and INFO aren't actionable logging levels The standard syslog-based way to handle logs is to divide logs into categories like `FATAL`, `ERROR`, `WARN`, `INFO`, and `DEBUG` and use those categories to adjust which logs you see. Having a standard logging taxonomy is incredibly useful when you're dealing with logs for many different systems, but for backend web-servers, these syslog-based divisions aren't necessarily actionable or easily searchable; it's better to create categorie...