Cleanup network shutdown messages

This commit is contained in:
Age Manning
2019-03-18 18:22:01 +11:00
parent 66f09e1b8e
commit 6a89da43b7
2 changed files with 3 additions and 3 deletions

View File

@@ -71,7 +71,7 @@ impl MessageHandler {
executor.spawn(future::poll_fn(move || -> Result<_, _> {
loop {
handler.handle_message(handler_recv.recv().map_err(|_| {
debug!(log, "Handler channel closed. Handler terminating");
debug!(log, "Network message handler terminated.");
})?);
}
}));