Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 1.13 KB

File metadata and controls

29 lines (18 loc) · 1.13 KB

Logging

Options to consider:

  • env_logger
  • slog
  • tracing

The current preference is for tracing in combination with tracing-subscriber (to log collected events and traces), because we have some async and parallelized code. In future, we should also add tracing-appender for rolling file logging.

Env_logger

https://github.com/env-logger-rs/env_logger/

A simple logger used by many Rust tools, configurable by env vars. Usually combined with pretty-env-logger.

Slog

https://github.com/slog-rs/slog

Composable, structured logger. Many extra libraries with extra functionality, e.g.:

Tracing

https://github.com/tokio-rs/tracing

Tracing & logging better suited for concurrent processes and async code. Many extra libraries with extra functionality, e.g.: