fix: debug msg

Co-authored-by: Andrew Lamb <alamb@influxdata.com>
pull/24376/head
Marco Neumann 2021-11-08 09:45:02 +01:00
parent 7f6280305d
commit 9984e4d386
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ impl ConnectionPool {
.get_with_meta(connection_string.to_string())
.await
.map_err(|e| Arc::new(e) as ConnectionError)?;
debug!(was_cached=%res.cached, %connection_string, "getting IOx write client");
debug!(was_cached=%res.cached, %connection_string, "getting IOx client");
Ok(res.result)
}