5个不稳定版本

0.4.1 2023年8月19日
0.4.0 2023年8月19日
0.3.1 2023年8月19日
0.2.0 2023年8月17日
0.1.0 2023年8月17日

#574 in HTTP服务器

每月38次下载

Apache-2.0

36KB
771

actix-logger

默认actix web日志中间件的即插即用替代品

简单地将重定向消息和客户端错误的日志级别更改为Warn,并在服务器错误时更改为Error

示例

use actix_web::{App, HttpServer};
use actix_logger::Logger;

#[tokio::main]
async fn main() -> actix_web::Result<()> {
    twink::log::setup();

    HttpServer::new(|| {
        App::new().wrap(Logger::default().service(/* */))
    })
    .bind(("127.0.0.1", 8080))?
    .run()
    .await
}

lib.rs:

有关中间件文档,请参阅Logger

依赖关系

~16–28MB
~502K SLoC