Make LogMiddleware fields public

This commit is contained in:
Michael Pfaff 2021-01-21 11:52:22 -05:00
parent 8a7353dc97
commit c15c901a5c
Signed by: michael
GPG Key ID: E53B118B12B5C7F9
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ use tracing::Level;
#[derive(Debug, Clone)]
pub struct LogMiddleware {
include_ip: bool,
include_query: bool,
pub include_ip: bool,
pub include_query: bool,
}
impl Default for LogMiddleware {