1
0
mirror of https://github.com/actix/examples synced 2024-11-27 16:02:57 +01: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 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 futures::future::{join_all, ok as fut_ok, Future};
use r2d2_sqlite; use r2d2_sqlite;
use r2d2_sqlite::SqliteConnectionManager; use r2d2_sqlite::SqliteConnectionManager;
@ -79,8 +81,7 @@ fn main() -> io::Result<()> {
HttpServer::new(move || { HttpServer::new(move || {
App::new() App::new()
.state(pool.clone()) .state(pool.clone())
// enable logger .middleware(middleware::Logger::default())
// .middleware(middleware::Logger::default())
.service( .service(
web::resource("/asyncio_weather") web::resource("/asyncio_weather")
.route(web::get().to_async(asyncio_weather)), .route(web::get().to_async(asyncio_weather)),

View File

@ -11,10 +11,6 @@ actix-web = { git="https://github.com/actix/actix-web.git", branch = "1.0" }
actix-session = { git="https://github.com/actix/actix-web.git", branch = "1.0" } actix-session = { git="https://github.com/actix/actix-web.git", branch = "1.0" }
actix-staticfiles = { git="https://github.com/actix/actix-web.git", branch = "1.0" } actix-staticfiles = { git="https://github.com/actix/actix-web.git", branch = "1.0" }
#actix-web = { path="../../actix-web/" }
#actix-session = { path="../../actix-web/actix-session/" }
#actix-staticfiles = { path="../../actix-web/actix-staticfiles/" }
futures = "0.1.25" futures = "0.1.25"
env_logger = "0.5" env_logger = "0.5"
bytes = "0.4" bytes = "0.4"

View File

@ -5,7 +5,8 @@ use actix_staticfiles as fs;
use actix_web::extract::Path; use actix_web::extract::Path;
use actix_web::http::{header, Method, StatusCode}; use actix_web::http::{header, Method, StatusCode};
use actix_web::{ use actix_web::{
error, guard, web, App, Error, HttpRequest, HttpResponse, HttpServer, Result, error, guard, middleware, web, App, Error, HttpRequest, HttpResponse, HttpServer,
Result,
}; };
use bytes::Bytes; use bytes::Bytes;
use futures::unsync::mpsc; use futures::unsync::mpsc;
@ -79,7 +80,7 @@ fn main() -> io::Result<()> {
HttpServer::new(|| { HttpServer::new(|| {
App::new() App::new()
// enable logger // enable logger
// .middleware(middleware::Logger::default()) .middleware(middleware::Logger::default())
// cookie session middleware // cookie session middleware
.middleware(CookieSession::signed(&[0; 32]).secure(false)) .middleware(CookieSession::signed(&[0; 32]).secure(false))
// register favicon // register favicon

View File

@ -2,7 +2,8 @@
use std::io; use std::io;
use actix_web::{ use actix_web::{
blocking, extract::Path, web, App, Error, HttpResponse, HttpServer, State, blocking, extract::Path, middleware, web, App, Error, HttpResponse, HttpServer,
State,
}; };
use futures::Future; use futures::Future;
use r2d2::Pool; use r2d2::Pool;
@ -48,6 +49,7 @@ fn main() -> io::Result<()> {
HttpServer::new(move || { HttpServer::new(move || {
App::new() App::new()
.state(pool.clone()) // <- store db pool in app state .state(pool.clone()) // <- store db pool in app state
.middleware(middleware::Logger::default())
.route("/{name}", web::get().to_async(index)) .route("/{name}", web::get().to_async(index))
}) })
.bind("127.0.0.1:8080")? .bind("127.0.0.1:8080")?