mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-14 10:22:38 +00:00
Tracing Integration
- [reference](5bbf1859e9/projects/project-ideas.md (L297))
- [x] replace slog & log with tracing throughout the codebase
- [x] implement custom crit log
- [x] make relevant changes in the formatter
- [x] replace sloggers
- [x] re-write SSE logging components
cc: @macladson @eserilev
7 lines
125 B
Rust
7 lines
125 B
Rust
#[macro_export]
|
|
macro_rules! crit {
|
|
($($arg:tt)*) => {
|
|
tracing::error!(error_type = "crit", $($arg)*);
|
|
};
|
|
}
|