diff --git a/src/main.rs b/src/main.rs index a54fa604..78bf3c28 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,7 +5,7 @@ use axum::{ response::{Html, IntoResponse, Response}, Router, extract::{Path, Query, State}, Form, http::{header, StatusCode}, Json, }; -use log::{info, debug}; +use log::{info, debug, trace}; use rand::{seq::SliceRandom, Rng, distributions::{Alphanumeric, DistString}}; use serde::{Deserialize, Serialize}; use tokio::{sync::Mutex, process::Command}; @@ -325,7 +325,7 @@ async fn main() { let mut interval = tokio::time::interval(Duration::from_secs(15)); loop { interval.tick().await; - debug!("cleaning up"); + trace!("cleaning up"); let now = SystemTime::now().duration_since(SystemTime::UNIX_EPOCH).unwrap().as_secs();