mirror of
https://github.com/actix/actix-web.git
synced 2024-11-25 02:51:15 +00:00
add startup logging to basic example
This commit is contained in:
parent
75a97f6b32
commit
605cd7c540
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,3 @@
|
|||
#![allow(clippy::uninlined_format_args)]
|
||||
|
||||
use actix_web::{get, middleware, web, App, HttpRequest, HttpResponse, HttpServer};
|
||||
|
||||
#[get("/resource1/{name}/index.html")]
|
||||
|
@ -22,6 +20,8 @@ async fn no_params() -> &'static str {
|
|||
async fn main() -> std::io::Result<()> {
|
||||
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
|
||||
|
||||
log::info!("starting HTTP server at http://localhost:8080");
|
||||
|
||||
HttpServer::new(|| {
|
||||
App::new()
|
||||
.wrap(middleware::DefaultHeaders::new().add(("X-Version", "0.2")))
|
||||
|
|
Loading…
Reference in a new issue