diff --git a/content/docs/errors.md b/content/docs/errors.md index cbdb5c9..875325e 100644 --- a/content/docs/errors.md +++ b/content/docs/errors.md @@ -114,7 +114,12 @@ to see. # Error Logging -This is a basic example using `middleware::Logger`: +This is a basic example using `middleware::Logger` which depends on `env_logger` and `log`: +```toml +[dependencies] +env_logger = "0.8" +log = "0.4" +``` {{< include-example example="errors" file="logging.rs" section="logging" >}}