Pull in macros from the log crate in tests.

This commit is contained in:
whitequark 2017-01-31 11:46:07 +00:00
parent 255d69d63b
commit 9905b3de86
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ extern crate std;
extern crate libc; extern crate libc;
#[cfg(feature = "use_alloc")] #[cfg(feature = "use_alloc")]
extern crate alloc; extern crate alloc;
#[cfg(feature = "use_log")] #[cfg(any(test, feature = "use_log"))]
#[macro_use(trace, log)] #[macro_use(trace, log)]
extern crate log; extern crate log;