nadavrot / layout

Layout is a rust library and a tool that renders Graphviz dot files.
MIT License
626 stars 35 forks source link

Cargo.toml: add 'log' feature. #22

Closed lucasvr closed 4 months ago

lucasvr commented 4 months ago

The layout crate has a few calls to log::info!() guarded by a #[cfg(feature = "log")] conditional. This commit declares the log feature so that users of the crate can enable such debug messages.

nadavrot commented 4 months ago

Thank you @lucasvr