linebender / skribo

A Rust library for low-level text layout.
Apache License 2.0
326 stars 36 forks source link

Use trace! instead of println! for debug flood #27

Closed tiffany352 closed 5 years ago

tiffany352 commented 5 years ago

These prints happen so frequently that they destroy performance, and this crate already depends on the log crate, so it makes sense to replace them with trace! statements.

jdm commented 5 years ago

Makes sense. Thanks!