We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba5e77f commit 2461aa9Copy full SHA for 2461aa9
src/services/telegram.rs
@@ -25,7 +25,7 @@ pub async fn init() -> Result<()> {
25
26
// Get bot token from environment
27
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());
+ // logger.log("TELEGRAM_BOT_TOKEN not set in environment. Telegram notifications disabled.".yellow().to_string());
29
anyhow!("TELEGRAM_BOT_TOKEN not set")
30
})?;
31
@@ -375,4 +375,4 @@ pub async fn send_summary_notification(
375
);
376
377
send_message(&message).await
378
-}
+}
0 commit comments