mirror of
https://github.com/bevyengine/bevy
synced 2024-11-29 08:00:20 +00:00
6 lines
217 B
Markdown
6 lines
217 B
Markdown
|
# Debugging
|
||
|
|
||
|
## Macro Debugging
|
||
|
|
||
|
* Print the final output of a macro using ```cargo rustc --profile=check -- -Zunstable-options --pretty=expanded```
|
||
|
* Print output during macro compilation using ```eprintln!("hi");```
|