1
0
mirror of https://github.com/actix/actix-website synced 2024-11-25 01:02:58 +01:00
actix-website/examples/middleware/src/logger.rs

22 lines
446 B
Rust
Raw Normal View History

2019-06-17 22:57:57 +02:00
// <logger>
use actix_web::middleware::Logger;
use env_logger;
2019-12-28 18:03:17 +01:00
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
2019-06-26 08:59:20 +02:00
use actix_web::{App, HttpServer};
2019-06-17 22:57:57 +02:00
std::env::set_var("RUST_LOG", "actix_web=info");
env_logger::init();
2019-06-26 08:59:20 +02:00
HttpServer::new(|| {
App::new()
.wrap(Logger::default())
.wrap(Logger::new("%a %{User-Agent}i"))
})
2019-12-28 18:03:17 +01:00
.bind("127.0.0.1:8088")?
2019-06-26 08:59:20 +02:00
.run()
2019-12-28 18:03:17 +01:00
.await
2019-06-17 22:57:57 +02:00
}
// </logger>