Add this to your Cargo.toml
:
toml
[dependencies.develop_debug]
version = "0.1.2"
features = ["debug"]
Use the develop_debug!
:
``` rust use develop_debug::*;
let x = "dear X"; let say = "hello world!"; let array = vec!["a", "b", "c"]; let title2 = "balabala...";
developdebug!(title "example",title2);
developdebug!(var x,say);
developdebug!(iter array.iter());
developdebug!(done "genius!");
developdebug!(error "dude, this road is blocked.");
developdebug!("{}","Use it just as you would with the println!()
macro.");
```
Output:
``` output π example π balabala... π· βΉ x βΊ = βΉdear XβΊ π· βΉ say βΊ = βΉhello world!βΊ πΆ array.iter() πΈ "a" πΈ "b" πΈ "c" π± done. π± genius!
π₯ error. π₯ dude, this road is blocked.
π° Use it just as you would with the println!()
macro.
```
Using the develop_debug!
shortcut, print the same output as above :
``` rust use develop_debug::*;
let x = "dear X"; let say = "hello world!"; let array = vec!["a", "b", "c"]; let title2 = "balabala...";
ddtitle!("example", title2);
dd_var!(x, say);
dditer!(array.iter());
dddone!("genius!");
dderror!("dude, this road is blocked.");
dd__!("{}","Use it just as you would with the println!()
macro.");
```
develop_debug!
shortcut?π¬ I think it's easy to recognize in the source code ;
π€€ I think it's convenient to prompt in VS Code
;
π€ I think it visually splits up the code ;
π¬ Add this to your Cargo.toml
when developing :
toml
[dependencies.develop_debug]
version = "0.1.2"
features = ["debug"]
π€ Modify Cargo.toml
when you are ready to release :
toml
[dependencies.develop_debug]
version = "0.1.2"
features = [] # You can also comment out or delete this line.
develop_debug!
macro expands to empty;π₯Ί, please forgive my lack of English. All the documents are explained by the translation software; If you can provide a better translation, please contact me at code@autodo.xyz;
I hope this simple library is of some help to you.
π π π π π π
After switching features or upgrading versions, then executing cargo
may report an error:
``` sh cargo build ... error: failed to remove .../target/debug/deps/generates-...: No such file or directory (os error 2)
cargo clean cargo build ```