You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -22,7 +22,7 @@ It must be added along with `log` to the project dependencies:
22
22
```toml
23
23
[dependencies]
24
24
log = "0.4.0"
25
-
env_logger = "0.8.0"
25
+
env_logger = "0.8.1"
26
26
```
27
27
28
28
`env_logger` must be initialized as early as possible in the project. After it's initialized, you can use the `log` macros to do actual logging.
@@ -48,7 +48,7 @@ $ RUST_LOG=info ./main
48
48
[2018-11-03T06:09:06Z INFO default] starting up
49
49
```
50
50
51
-
`env_logger` can be configured in other ways besides an environment variable. See [the examples](https://github.com/sebasmagri/env_logger/tree/master/examples) for more approaches.
51
+
`env_logger` can be configured in other ways besides an environment variable. See [the examples](https://github.com/env-logger-rs/env_logger/tree/master/examples) for more approaches.
52
52
53
53
### In tests
54
54
@@ -59,7 +59,7 @@ Tests can use the `env_logger` crate to see log messages generated during that t
0 commit comments