little_hyper/
logger.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
use crate::Request;

/// Logger
/// 
/// 
#[derive(Default)]
pub struct Logger {
    log: bool,
}

impl Logger {
    pub fn new(log: bool) -> Self {
        Self { log }
    }

    pub fn set(&mut self, log: bool) {
        self.log = log;
    }

    /// Request
    /// 
    /// Log the request
    pub fn request(&self, request: &Request) {
        if !self.log {
            return;
        }

        println!(
            "{method:<6} {path}",
            method = request.method,
            path = request.path
        );
    }
}