tideway 0.7.17

A batteries-included Rust web framework built on Axum for building SaaS applications quickly
Documentation
1
2
3
4
5
6
7
8
9
10
//! Request and response logging middleware.
//!
//! Provides structured logging for HTTP requests and responses,
//! useful for debugging and monitoring.

mod config;
mod middleware;

pub use config::{RequestLoggingConfig, RequestLoggingConfigBuilder};
pub use middleware::build_request_logging_layer;