Update `Ok(None)` case logging.

This commit is contained in:
Deirdre Connolly 2019-11-12 15:17:35 -05:00 committed by Deirdre Connolly
parent 0f20ff59c7
commit 73d777fe65
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ impl Service<Request> for SeedService {
return Poll::Ready(Err(e.into()));
}
Ok(None) => {
debug!("SeedService got a message with `None` in it. 🤔");
trace!("SeedService hasn't received a message via the oneshot yet.");
return Poll::Pending;
}
Ok(Some(address_book)) => {