Use the correct log crate and setup env_logger in main.

This commit is contained in:
Eduard Burtescu 2015-06-06 23:20:40 +03:00
parent 78665336e6
commit 00e8e5f77d
35 changed files with 95 additions and 16 deletions

View file

@ -889,7 +889,7 @@ impl LayoutTask {
};
debug!("layout: received layout request for: {}", self.url.serialize());
if log_enabled!(log::DEBUG) {
if log_enabled!(log::LogLevel::Debug) {
node.dump();
}