-
Couldn't load subscription status.
- Fork 97
slog v2
Sander Maijers edited this page Nov 6, 2017
·
28 revisions
- Unified and simplified logging macros structure and ordering.
- Added logging Record
tags - Refactored key-value pairs under
KVtrait- It's now possible to
impl KV for MyStruct. -
kv!can be used to create on stack key-value list. KV-implementing data can appear on the key-value list directly.- Support for
fmt::Debugan `fmt::Display values
- It's now possible to
- Support chaining of
OwnedKVLists. ExistingLoggercan be used as aDrainto allow custom handling logic for a part of the logging hierarchy. - Added associated
Oktype toDrain. - Support for
Drains unwind safety. - Refactored
Recordto optimize performance on async operations. -
slog-extrahas been renamed toslog-asyncsince that's the only functionality it contained. -
slog-streamis obsoleted and won't be used inslog v2at all. It was a wrong abstraction.Decoratorsfunctionality was moved toslog-term. -
slog-termprovides openDecoratortraits to allow multiple terminal / file writing backends. -
slog-termdefaultDecorators usetermcrate and should work correctly on all supported OSes. -
DrainExthas been removed and utility methods moved directly toDrain -
slog-stdlogutilizesslog-scopedirectly. -
Support for "typed"
Loggers to allow squeezing last drops of performance possible, at the ergonomic cost ofTinLogger<T>.
Core slog v2 crate is stable. Majority of core feature crates are ready and working, and will have stable releases after getting more confidence in their APIs.
Your feedback and opinions can speed up the stabilization process.
This list might not be up to date. Feel free to edit.
# still need porting to v2
slog-cadence
slog-html
slog-example-lib
# obsoleted
slog-extra - contained just `async` so is not `slog-async`
slog-stream - use `Decorator` in slog-term instead
slog-serde - wasn't useful enough
slog-scope-stdlog - use slog-scope instead