change log level, remove unused import

This commit is contained in:
mii443
2025-04-04 21:07:48 +09:00
parent c68e533133
commit af83f6b6e0
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
use crate::{ use crate::{
database::database::Database, database::database::Database,
tts::{gcp_tts::gcp_tts::GCPTTS, tts::TTS, voicevox::voicevox::VOICEVOX}, tts::tts::TTS,
}; };
use serenity::{ use serenity::{
futures::lock::Mutex, futures::lock::Mutex,

View File

@ -43,7 +43,7 @@ async fn create_client(prefix: &str, token: &str, id: u64) -> Result<Client, ser
#[tokio::main] #[tokio::main]
async fn main() { async fn main() {
tracing_subscriber::fmt().with_max_level(Level::DEBUG).init(); tracing_subscriber::fmt().with_max_level(Level::INFO).init();
// Load config // Load config
let config = { let config = {
let config = std::fs::read_to_string("./config.toml"); let config = std::fs::read_to_string("./config.toml");