Skip to content

Commit 2461aa9

Browse files
authored
Update telegram.rs
1 parent ba5e77f commit 2461aa9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/telegram.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub async fn init() -> Result<()> {
2525

2626
// Get bot token from environment
2727
let bot_token = env::var("TELEGRAM_BOT_TOKEN").map_err(|_| {
28-
logger.log("TELEGRAM_BOT_TOKEN not set in environment. Telegram notifications disabled.".yellow().to_string());
28+
// logger.log("TELEGRAM_BOT_TOKEN not set in environment. Telegram notifications disabled.".yellow().to_string());
2929
anyhow!("TELEGRAM_BOT_TOKEN not set")
3030
})?;
3131

@@ -375,4 +375,4 @@ pub async fn send_summary_notification(
375375
);
376376

377377
send_message(&message).await
378-
}
378+
}

0 commit comments

Comments
 (0)