diff options
author | James Sanders <sanderjd@gmail.com> | 2015-12-01 21:15:14 -0700 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-12-03 08:33:14 -0500 |
commit | a94e52d8143de0a1276253971425731c8e89b1b0 (patch) | |
tree | bca60d3205aadd1783ded68e2a6debdfb4d0ddfb | |
parent | 8ae008761f6bf19b7c912cf9e0bf2aa157f32dec (diff) | |
download | servo-a94e52d8143de0a1276253971425731c8e89b1b0.tar.gz servo-a94e52d8143de0a1276253971425731c8e89b1b0.zip |
Fix broken env_logger documentation link in HACKING_QUICKSTART
-rw-r--r-- | HACKING_QUICKSTART.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/HACKING_QUICKSTART.md b/HACKING_QUICKSTART.md index 84c206650f1..ee71606b33c 100644 --- a/HACKING_QUICKSTART.md +++ b/HACKING_QUICKSTART.md @@ -159,7 +159,7 @@ Using `RUST_LOG="debug"` is usually the very first thing you might want to do if RUST_LOG="debug" ./mach run -d -- -i -y 1 -t 1 /tmp/a.html 2>&1 | ts -s "%.S: " | tee /tmp/log.txt ``` -You can filter by crate or module, for example `RUST_LOG="layout::inline=debug" ./mach run …`. This is documented at https://rust-lang.github.io/log/env_logger/. +You can filter by crate or module, for example `RUST_LOG="layout::inline=debug" ./mach run …`. Check the [env_logger](http://doc.rust-lang.org/log/env_logger/index.html) documentation for more details. Use `RUST_BACKTRACE=1` to dump the backtrace when Servo panics. |