We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af46ee4 commit 5396105Copy full SHA for 5396105
src/compiler-debugging.md
@@ -46,9 +46,10 @@ stack backtrace:
46
37: rustc_driver::run_compiler
47
```
48
49
-If you want line numbers for the stack trace, you can enable
50
-`debuginfo-level = 1` or `debuginfo-level = 2` in your config.toml and rebuild the
51
-compiler. Then the backtrace will look like this:
+If you want line numbers for the stack trace, you can enable `debug = true` in
+your config.toml and rebuild the compiler (`debuginfo-level = 1` will also add
+line numbers, but `debug = true` gives full debuginfo). Then the backtrace will
52
+look like this:
53
54
```text
55
stack backtrace:
0 commit comments