diff --git a/README.md b/README.md index 12c287c14a..9b9003bd1f 100644 --- a/README.md +++ b/README.md @@ -394,7 +394,7 @@ are not maintained by the `tokio` project. These include: _inside_ of functions. - [`tracing-wasm`] provides a `Subscriber`/`Layer` implementation that reports events and spans via browser `console.log` and [User Timing API (`window.performance`)]. -- [`test-env-log`] takes care of initializing `tracing` for tests, based on +- [`test-log`] takes care of initializing `tracing` for tests, based on environment variables with an `env_logger` compatible syntax. - [`tracing-unwrap`] provides convenience methods to report failed unwraps on `Result` or `Option` types to a `Subscriber`. - [`diesel-tracing`] provides integration with [`diesel`] database connections. @@ -423,7 +423,7 @@ please let us know!) [`color-eyre`]: https://docs.rs/color-eyre [`spandoc`]: https://docs.rs/spandoc [`tracing-wasm`]: https://docs.rs/tracing-wasm -[`test-env-log`]: https://crates.io/crates/test-env-log +[`test-log`]: https://crates.io/crates/test-log [User Timing API (`window.performance`)]: https://developer.mozilla.org/en-US/docs/Web/API/User_Timing_API [`tracing-unwrap`]: https://docs.rs/tracing-unwrap [`diesel`]: https://crates.io/crates/diesel diff --git a/tracing/README.md b/tracing/README.md index e3ee55b7e3..af7f6aa2a6 100644 --- a/tracing/README.md +++ b/tracing/README.md @@ -384,7 +384,7 @@ maintained by the `tokio` project. These include: GELF format. - [`tracing-coz`] provides integration with the [coz] causal profiler (Linux-only). -- [`test-env-log`] takes care of initializing `tracing` for tests, based on +- [`test-log`] takes care of initializing `tracing` for tests, based on environment variables with an `env_logger` compatible syntax. - [`tracing-unwrap`] provides convenience methods to report failed unwraps on `Result` or `Option` types to a `Subscriber`. - [`diesel-tracing`] provides integration with [`diesel`] database connections. @@ -404,7 +404,7 @@ please let us know! We'd love to add your project to the list! [`tracing-gelf`]: https://crates.io/crates/tracing-gelf [`tracing-coz`]: https://crates.io/crates/tracing-coz [coz]: https://github.com/plasma-umass/coz -[`test-env-log`]: https://crates.io/crates/test-env-log +[`test-log`]: https://crates.io/crates/test-log [`tracing-unwrap`]: https://docs.rs/tracing-unwrap [`diesel`]: https://crates.io/crates/diesel [`diesel-tracing`]: https://crates.io/crates/diesel-tracing diff --git a/tracing/src/lib.rs b/tracing/src/lib.rs index a89e8f96ec..5f96fc3576 100644 --- a/tracing/src/lib.rs +++ b/tracing/src/lib.rs @@ -730,7 +730,7 @@ //! - [`tracing-wasm`] provides a `Subscriber`/`Layer` implementation that reports //! events and spans via browser `console.log` and [User Timing API (`window.performance`)]. //! - [`tide-tracing`] provides a [tide] middleware to trace all incoming requests and responses. -//! - [`test-env-log`] takes care of initializing `tracing` for tests, based on +//! - [`test-log`] takes care of initializing `tracing` for tests, based on //! environment variables with an `env_logger` compatible syntax. //! - [`tracing-unwrap`] provides convenience methods to report failed unwraps //! on `Result` or `Option` types to a `Subscriber`. @@ -759,7 +759,7 @@ //! [User Timing API (`window.performance`)]: https://developer.mozilla.org/en-US/docs/Web/API/User_Timing_API //! [`tide-tracing`]: https://crates.io/crates/tide-tracing //! [tide]: https://crates.io/crates/tide -//! [`test-env-log`]: https://crates.io/crates/test-env-log +//! [`test-log`]: https://crates.io/crates/test-log //! [`tracing-unwrap`]: https://docs.rs/tracing-unwrap //! [`diesel`]: https://crates.io/crates/diesel //! [`diesel-tracing`]: https://crates.io/crates/diesel-tracing