refactor(http): adjust debug logs

This commit is contained in:
Sean McArthur
2017-01-23 22:48:09 -08:00
parent 8cd89bed86
commit 8597c55a13
3 changed files with 16 additions and 8 deletions

View File

@@ -59,7 +59,8 @@ impl Encoder {
}
*remaining -= n as u64;
trace!("sized write complete, remaining = {}", remaining);
debug!("encoded {} bytes", n);
trace!("encode sized complete, remaining = {}", remaining);
Ok(n)
},
}