From ffad3f159cf72f96c0a562fddc74d2959fba33f5 Mon Sep 17 00:00:00 2001 From: cyppe Date: Mon, 4 Mar 2024 12:33:25 +0100 Subject: [PATCH] Add debug for store new batch --- src/Repositories/RedisBatchRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Repositories/RedisBatchRepository.php b/src/Repositories/RedisBatchRepository.php index 0cf0ead..05d0585 100644 --- a/src/Repositories/RedisBatchRepository.php +++ b/src/Repositories/RedisBatchRepository.php @@ -116,7 +116,7 @@ public function store(PendingBatch $batch) Redis::connection(config('queue.batching.redis_connection', 'default'))->set("batch:{$id}", json_encode($batchData)); Redis::connection(config('queue.batching.redis_connection', 'default'))->rpush('batches_list', $id); // Add the batch ID to the list - $this->debug("store method - new batch created with id ({$id})"); + $this->debug("store method - new batch created with id ({$id}) and name ({$batch->name})"); return $this->find($id); }