mirror of
https://github.com/actix/actix-web.git
synced 2024-12-02 14:26:43 +00:00
add logger info
This commit is contained in:
parent
2374aa42ed
commit
7198dde465
1 changed files with 7 additions and 1 deletions
|
@ -64,7 +64,9 @@ Active provides several useful middlewares, like *logging*, *user sessions*, etc
|
||||||
|
|
||||||
Logging is implemented as middleware.
|
Logging is implemented as middleware.
|
||||||
It is common to register logging middleware as first middleware for application.
|
It is common to register logging middleware as first middleware for application.
|
||||||
Logging middleware has to be registered for each application.
|
Logging middleware has to be registered for each application. *Logger* middleware
|
||||||
|
uses standard log crate to log information. You should enable logger for *actix_web*
|
||||||
|
package to see access log. ([env_logger](https://docs.rs/env_logger/*/env_logger/) or similar)
|
||||||
|
|
||||||
### Usage
|
### Usage
|
||||||
|
|
||||||
|
@ -76,10 +78,14 @@ Default `Logger` could be created with `default` method, it uses the default for
|
||||||
```
|
```
|
||||||
```rust
|
```rust
|
||||||
# extern crate actix_web;
|
# extern crate actix_web;
|
||||||
|
extern crate env_logger;
|
||||||
use actix_web::Application;
|
use actix_web::Application;
|
||||||
use actix_web::middleware::Logger;
|
use actix_web::middleware::Logger;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
std::env::set_var("RUST_LOG", "actix_web=info");
|
||||||
|
env_logger::init();
|
||||||
|
|
||||||
Application::new()
|
Application::new()
|
||||||
.middleware(Logger::default())
|
.middleware(Logger::default())
|
||||||
.middleware(Logger::new("%a %{User-Agent}i"))
|
.middleware(Logger::new("%a %{User-Agent}i"))
|
||||||
|
|
Loading…
Reference in a new issue