Skip to content

Commit c371d52

Browse files
Don't display bb8 Postgres pool errors by default (#336)
* Don't visualize Postgres connection pool errors by default. * Don't display bb8 Postgres pool errors by default
1 parent d855e2b commit c371d52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/sql/db_connection_pool/postgrespool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ where
365365
E: std::fmt::Display,
366366
{
367367
fn sink(&self, error: E) {
368-
tracing::error!("Postgres Connection Error: {:?}", error);
368+
tracing::debug!("Postgres Pool Error: {}", error);
369369
}
370370

371371
fn boxed_clone(&self) -> Box<dyn ErrorSink<E>> {

0 commit comments

Comments
 (0)