fix: Tweak the the network listener log (#886)

This commit is contained in:
teor 2020-08-13 07:22:54 +10:00 committed by GitHub
parent 7541c1334a
commit 109666cc48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ where
{
let mut listener = TcpListener::bind(addr).await?;
let local_addr = listener.local_addr()?;
info!("Network listening at {}", local_addr);
info!("Opened Zcash protocol endpoint at {}", local_addr);
loop {
if let Ok((tcp_stream, addr)) = listener.accept().await {
debug!(?addr, "got incoming connection");