We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b652fc commit 3860674Copy full SHA for 3860674
src/util/errors.rs
@@ -172,7 +172,8 @@ impl From<EmailError> for BoxedAppError {
172
}
173
174
impl From<diesel_async::pooled_connection::deadpool::PoolError> for BoxedAppError {
175
- fn from(_err: diesel_async::pooled_connection::deadpool::PoolError) -> BoxedAppError {
+ fn from(err: diesel_async::pooled_connection::deadpool::PoolError) -> BoxedAppError {
176
+ error!("Database pool error: {err}");
177
service_unavailable()
178
179
0 commit comments