diff --git a/html/modules/custom/ocha_ai_summarize/src/Plugin/QueueWorker/OchaAiSummarizeActionPoints.php b/html/modules/custom/ocha_ai_summarize/src/Plugin/QueueWorker/OchaAiSummarizeActionPoints.php
index 0643d06..0e1ef70 100644
--- a/html/modules/custom/ocha_ai_summarize/src/Plugin/QueueWorker/OchaAiSummarizeActionPoints.php
+++ b/html/modules/custom/ocha_ai_summarize/src/Plugin/QueueWorker/OchaAiSummarizeActionPoints.php
@@ -269,7 +269,6 @@ protected function sendToBedRock($text) : string {
*/
protected function sendToTitanPremier($text) : string {
$result = ocha_ai_summarize_http_call_titan_premier($text);
- print_r($result);
return $result['results'][0]['outputText'] ?? '';
}
diff --git a/html/modules/custom/ocha_ai_summarize/src/Plugin/QueueWorker/OchaAiSummarizeSummarize.php b/html/modules/custom/ocha_ai_summarize/src/Plugin/QueueWorker/OchaAiSummarizeSummarize.php
index 056380f..bda51c8 100644
--- a/html/modules/custom/ocha_ai_summarize/src/Plugin/QueueWorker/OchaAiSummarizeSummarize.php
+++ b/html/modules/custom/ocha_ai_summarize/src/Plugin/QueueWorker/OchaAiSummarizeSummarize.php
@@ -265,7 +265,6 @@ protected function sendToBedRock($text) : string {
*/
protected function sendToTitanPremier($text) : string {
$result = ocha_ai_summarize_http_call_titan_premier($text);
- print_r($result);
return $result['results'][0]['outputText'] ?? '';
}