From 461edfa5bbf4138d8a41cb234684d71b86f36ce0 Mon Sep 17 00:00:00 2001 From: TriMill Date: Thu, 13 Jul 2023 23:40:21 -0400 Subject: [PATCH] trace --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();