This commit is contained in:
2024-05-07 00:42:15 +02:00
parent adc47f1b75
commit dbd4b547c6
2 changed files with 3 additions and 1 deletions

View File

@@ -109,6 +109,8 @@ pub async fn download_file(chat_id: i64, message_id: i32) -> Option<BotDownloade
}
};
log::info!("File path: {}", path);
return Some(BotDownloader::new(bot, path));
}

View File

@@ -29,7 +29,7 @@ async fn main() {
tracing_subscriber::registry()
.with(tracing_subscriber::fmt::layer().with_target(false))
// .with(filter::LevelFilter::INFO)
.with(filter::LevelFilter::INFO)
.with(sentry_layer)
.init();