diff --git a/book/src/user/tracing.md b/book/src/user/tracing.md index 97d5b4e86..3bb65d1fd 100644 --- a/book/src/user/tracing.md +++ b/book/src/user/tracing.md @@ -2,7 +2,7 @@ ## Dynamic Tracing -Zebra supports dynamic tracing, configured using the config's +Zebra supports dynamic tracing, configured using the config's [`TracingSection`][tracing_section] and an HTTP RPC endpoint. Activate this feature using the `filter-reload` compile-time feature, diff --git a/zebrad/src/lib.rs b/zebrad/src/lib.rs index c3fab383b..07cd9884f 100644 --- a/zebrad/src/lib.rs +++ b/zebrad/src/lib.rs @@ -72,14 +72,15 @@ //! Changing the traces that are collected: //! * `filter-reload`: dynamically reload tracing filters at runtime. //! * `error-debug`: enable extra debugging in release builds. -//! * `tokio-console`: enable tokio's `console-subscriber`. +//! * `tokio-console`: enable tokio's `console-subscriber` (needs [specific compiler flags]) //! * A set of features that [skip verbose tracing]. //! The default features ignore `debug` and `trace` logs in release builds. //! //! Read the [tracing](https://zebra.zfnd.org/user/tracing.html) section of the book //! for more details. //! -//! [ignore verbose tracing]: https://docs.rs/tracing/0.1.35/tracing/level_filters/index.html#compile-time-filters +//! [skip verbose tracing]: https://docs.rs/tracing/0.1.35/tracing/level_filters/index.html#compile-time-filters +//! [specific compiler flags]: https://zebra.zfnd.org/dev/tokio-console.html#setup //! //! ### Testing //!