Little more trace! logging

This commit is contained in:
Michael Vines
2018-07-18 12:44:59 -07:00
parent 39df087902
commit 5deb34e5bd
3 changed files with 10 additions and 6 deletions

View File

@@ -126,7 +126,7 @@ pub fn responder(
//TODO, we would need to stick block authentication before we create the
//window.
fn recv_blobs(recycler: &BlobRecycler, sock: &UdpSocket, s: &BlobSender) -> Result<()> {
trace!("receiving on {}", sock.local_addr().unwrap());
trace!("recv_blobs: receiving on {}", sock.local_addr().unwrap());
let dq = Blob::recv_from(recycler, sock)?;
if !dq.is_empty() {
s.send(dq)?;