fix(log): update to new logging levels

This commit is contained in:
Sean McArthur
2015-01-27 09:02:12 -08:00
parent 1ebbdedd13
commit b002b6c3f0

View File

@@ -153,7 +153,7 @@ use self::HttpError::{HttpMethodError, HttpUriError, HttpVersionError,
macro_rules! todo(
($($arg:tt)*) => (if cfg!(not(ndebug)) {
log!(5, "TODO: {:?}", format_args!($($arg)*))
trace!("TODO: {:?}", format_args!($($arg)*))
})
);