linebender / skribo

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

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

Closed tiffany352 closed 4 years ago

tiffany352 commented 4 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 4 years ago

Makes sense. Thanks!