some more logging

This commit is contained in:
Sean McArthur
2014-11-10 16:10:52 -08:00
parent 358edc0d2b
commit bb45ac509d
4 changed files with 26 additions and 7 deletions

View File

@@ -177,6 +177,14 @@ macro_rules! trace(
})
)
macro_rules! inspect(
($name:expr, $value:expr) => ({
let v = $value;
debug!("inspect: $name = {}", v);
v
})
)
pub mod client;
pub mod method;
pub mod header;