| ... | @@ -81,8 +81,8 @@ pub fn log( | ... | @@ -81,8 +81,8 @@ pub fn log( |
| 81 | | 81 | |
| 82 | // We only recognize 4 log levels in this application. | 82 | // We only recognize 4 log levels in this application. |
| 83 | const level_txt = switch (level) { | 83 | const level_txt = switch (level) { |
| 84 | .emerg, .alert, .crit => "error", | 84 | .emerg, .alert, .crit, .err => "error", |
| 85 | .err, .warn => "warning", | 85 | .warn => "warning", |
| 86 | .notice, .info => "info", | 86 | .notice, .info => "info", |
| 87 | .debug => "debug", | 87 | .debug => "debug", |
| 88 | }; | 88 | }; |