From 36bda1e89fbae06840fe77b39dcc0be985113a29 Mon Sep 17 00:00:00 2001 From: prcrst Date: Fri, 8 Mar 2024 09:29:12 +0100 Subject: [PATCH] A little more chatty on the console --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index e1579a2..29afb5f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -55,7 +55,7 @@ async fn post_to_lemmy( ) .as_ref(), )?; - println!("{}", title); + println!("Using title: {}", title); let params = CreatePost { community_id, @@ -95,6 +95,7 @@ async fn get_latest_post( client: &Client, user: &Sensitive, ) -> Result, Box> { + println!("Checking if already posted..."); let params = GetPersonDetails { username: Some(user.to_string()), sort: Some(SortType::New),