From b3be83524d70768c879aa1c04005eb358d626220 Mon Sep 17 00:00:00 2001 From: OMGeeky Date: Sun, 2 Apr 2023 13:34:50 +0200 Subject: [PATCH] some println's --- src/lib.rs | 1 + src/main.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 77b1a79..c1887fe 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -74,6 +74,7 @@ async fn get_watched_streamers(client: &BigqueryClient) -> Result } pub async fn start_backup() -> Result<()> { + println!("Starting backup"); let config = downloader_config::load_config(); let project_id = &config.bigquery_project_id; let service_account_path = &config.bigquery_service_account_path; diff --git a/src/main.rs b/src/main.rs index 2af1f77..adfe7c9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -27,7 +27,7 @@ const DATASET_ID: &str = "backup_data"; #[tokio::main] async fn main() -> Result<(), Box> { - // println!("Hello, world!"); + println!("Hello, world!"); start_backup().await?; // sample().await?; Ok(())