drop-in replacement for the default actix web logger middleware
simply changes the log level to `Warn` on redirection messages and client errors, and `Error` on server errors.
```rs
use actix_web::{App, HttpServer};
use actix_logger::Logger;
async fn main() -> actix_web::Result<()> {
}
```