Skip to content

Commit

Permalink
fix(client): change connection errors to debug log level
Browse files Browse the repository at this point in the history
Closes #1412
  • Loading branch information
seanmonstar committed Jan 10, 2018
1 parent 7976023 commit 2fe90f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
})
};
Expand Down

0 comments on commit 2fe90f2

Please sign in to comment.