From 7d3e973f742922ab93f9cb47e4788a0076535685 Mon Sep 17 00:00:00 2001 From: Denis-Cosmin NUTIU Date: Tue, 31 Dec 2024 12:16:21 +0200 Subject: [PATCH] add post publish log --- bot/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bot/src/main.rs b/bot/src/main.rs index 75b24ed..4d7bc41 100644 --- a/bot/src/main.rs +++ b/bot/src/main.rs @@ -95,6 +95,8 @@ async fn main() -> Result<(), anyhow::Error> { Ok(json) => { if let Err(err) = bluesky_client.post(json).await { error!("failed to post: {post:?} {err}") + } else { + info!("Published a post! 🦀") } } Err(err) => {