From 9b96b64b6896d997d8d180dfcf8a7cec953d254c Mon Sep 17 00:00:00 2001 From: akagiyuu Date: Fri, 28 Nov 2025 21:45:43 +0700 Subject: [PATCH] fix: info log only --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index edb42a1..f62c9bb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -92,7 +92,7 @@ pub async fn build_bot() -> anyhow::Result<()> { #[tokio::main] async fn main() -> anyhow::Result<()> { tracing_subscriber::fmt() - .with_max_level(tracing::Level::DEBUG) + .with_max_level(tracing::Level::INFO) .pretty() .with_timer(tracing_subscriber::fmt::time::ChronoLocal::rfc_3339()) .init();