Use log::error in LoggingErrorHandler

This commit is contained in:
Temirkhan Myrzamadi 2020-02-11 22:56:48 +06:00
parent 868f39c2e8
commit ca9af25f92

View file

@ -145,7 +145,7 @@ where
where where
E: 'a, E: 'a,
{ {
log::debug!("{text}: {:?}", error, text = self.text); log::error!("{text}: {:?}", error, text = self.text);
Box::pin(async {}) Box::pin(async {})
} }
} }