unreal/data/log_level.rs
1use crate::array_consts;
2
3array_consts![
4 pub const GENERAL: [&str; _] = ["error", "warning", "info", "fatal", "trace", "debug"];
5
6 pub const SYSLOG: [&str; _] = [
7 "emerg", "alert", "crit", "err", "warning", "notice", "info", "debug",
8 ];
9
10 pub const APACHE: [&str; _] = [
11 "emerg", "alert", "crit", "error", "warn", "notice", "info", "debug", "trace1-8",
12 ];
13];