From dd0b3e7eaf99d127ed2556efed94afce3b9ffa5d Mon Sep 17 00:00:00 2001 From: ghost Date: Thu, 21 Dec 2023 12:54:51 +0200 Subject: [PATCH] update debug message --- src/cli/bot.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/cli/bot.php b/src/cli/bot.php index fa8ad21..03dc889 100644 --- a/src/cli/bot.php +++ b/src/cli/bot.php @@ -167,7 +167,11 @@ foreach ($config->feed as $feed) // Get post k if (null === $posts = $twister->getPosts([$feed->target], 1)) { - echo _('Could not receive post K value') . PHP_EOL; + echo sprintf( + _('Could not receive twister posts for "%s" %s'), + $feed->target, + PHP_EOL + ); continue; }