diff --git a/README.md b/README.md index 7b31421b..1457ecd7 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ [![crates.io](https://img.shields.io/crates/v/env_logger.svg)](https://crates.io/crates/env_logger) [![Documentation](https://docs.rs/env_logger/badge.svg)](https://docs.rs/env_logger) -[![Documentation](https://img.shields.io/badge/docs-main-blue.svg)](https://env-logger-rs.github.io/env_logger/env_logger/index.html) Implements a logger that can be configured via environment variables. @@ -72,7 +71,7 @@ There is also a pseudo logging level, `off`, which may be specified to disable all logging for a given module or for the entire application. As with the logging levels, the letter case is not significant. -`env_logger` can be configured in other ways besides an environment variable. See [the examples](https://github.com/env-logger-rs/env_logger/tree/main/examples) for more approaches. +`env_logger` can be configured in other ways besides an environment variable. See [the examples](https://github.com/rust-cli/env_logger/tree/main/examples) for more approaches. ### In tests diff --git a/src/lib.rs b/src/lib.rs index d2dd5fdf..4e5d5428 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -256,9 +256,9 @@ //! env_logger::Builder::from_env(Env::default().default_filter_or("warn")).init(); //! ``` //! -//! [gh-repo-examples]: https://github.com/env-logger-rs/env_logger/tree/main/examples +//! [gh-repo-examples]: https://github.com/rust-cli/env_logger/tree/main/examples //! [level-enum]: https://docs.rs/log/latest/log/enum.Level.html -//! [log-crate-url]: https://docs.rs/log/ +//! [log-crate-url]: https://docs.rs/log //! [`Builder`]: struct.Builder.html //! [`Builder::is_test`]: struct.Builder.html#method.is_test //! [`Env`]: struct.Env.html @@ -329,7 +329,7 @@ struct Var<'a> { /// the associated [`Builder`] and install it with the /// [`log` crate][log-crate-url] directly. /// -/// [log-crate-url]: https://docs.rs/log/ +/// [log-crate-url]: https://docs.rs/log /// [`init()`]: fn.init.html /// [`try_init()`]: fn.try_init.html /// [`Builder::init()`]: struct.Builder.html#method.init