Remove log

This commit is contained in:
philipp lang 2023-02-22 22:38:11 +01:00
parent 407338d431
commit 24d65e37c3
1 changed files with 0 additions and 1 deletions

View File

@ -32,7 +32,6 @@ class InitializeMembers
$batch = Bus::batch($jobs)
->finally(function (Batch $batch) {
Log::debug('Complete Member count: '.count(Redis::lrange('members', 0, -1)));
foreach (Redis::lrange('members', 0, -1) as $data) {
ProcessRedisAction::dispatch(json_decode($data, true));
}