fix(client): change connection errors to debug log level

Closes #1412
This commit is contained in:
Sean McArthur
2018-01-09 17:46:35 -08:00
parent 7976023b59
commit 2fe90f2564

View File

@@ -198,7 +198,7 @@ where C: Connect,
let pooled = pool.pooled(pool_key, tx);
let conn = proto::Conn::<_, _, proto::ClientTransaction, _>::new(io, pooled.clone());
let dispatch = proto::dispatch::Dispatcher::new(proto::dispatch::Client::new(rx), conn);
handle.spawn(dispatch.map_err(|err| error!("client connection error: {}", err)));
handle.spawn(dispatch.map_err(|err| debug!("client connection error: {}", err)));
pooled
})
};