Skip to main content

ERROR

Constant ERROR 

Source
pub const ERROR: u8 = 174;
Expand description

Muted red — used for errors and HTTP 5xx status codes.

RGB equivalent: (199, 132, 144) — rose/muted red

Used for:

  • ERROR level label (bold)
  • error=<message> field value
  • status=500 → “500” in muted red
  • Any HTTP status >= 500

§Why muted red instead of bright red?

Bright red (\x1b[31m) is harsh and hard to read in log streams. Aurora uses muted red (ANSI 174) for better readability while still clearly indicating error state. It’s noticeable without being alarming.