Skip to content

Commit fb753bd

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 409fda2 commit fb753bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/sql/db_connection_pool/postgrespool.rs

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

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

0 commit comments

Comments
 (0)