1
0
mirror of https://github.com/actix/examples synced 2025-06-28 09:50:36 +02:00

enable logger

This commit is contained in:
Nikolay Kim
2019-03-06 19:45:45 -08:00
parent 51860a4f2a
commit c4df3356c7
4 changed files with 10 additions and 10 deletions

View File

@ -11,7 +11,9 @@ This project illustrates two examples:
*/
use std::io;
use actix_web::{web, App, Error as AWError, HttpResponse, HttpServer, State};
use actix_web::{
middleware, web, App, Error as AWError, HttpResponse, HttpServer, State,
};
use futures::future::{join_all, ok as fut_ok, Future};
use r2d2_sqlite;
use r2d2_sqlite::SqliteConnectionManager;
@ -79,8 +81,7 @@ fn main() -> io::Result<()> {
HttpServer::new(move || {
App::new()
.state(pool.clone())
// enable logger
// .middleware(middleware::Logger::default())
.middleware(middleware::Logger::default())
.service(
web::resource("/asyncio_weather")
.route(web::get().to_async(asyncio_weather)),