Skip to content

Commit 5b1640b

Browse files
author
palPalani
committed
Added more debug log
1 parent 575060f commit 5b1640b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/SqsQueueReaderServiceProvider.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@ public function boot(): void
3636
Log::debug('Job payload==', [$data]);
3737

3838
$batchIds = array_column($data, 'batchIds');
39-
Log::debug('Job array_column==', [$data]);
39+
Log::debug('Job array_column==', [$batchIds]);
4040
$batchIds = array_chunk($batchIds, 10);
41-
Log::debug('Job array_chunk==', [$data]);
41+
Log::debug('Job array_chunk==', [$batchIds]);
42+
4243
foreach ($batchIds as $batch) {
4344
//Deletes up to ten messages from the specified queue.
4445
$result = $event->job->deleteMessageBatch([

0 commit comments

Comments
 (0)