Creates log of jobs being processed from the queue
jsefton/laravel-queue-logger is a Laravel package for creates log of jobs being processed from the queue.
It currently has 0 GitHub stars and 2.285 downloads on Packagist (latest version 1.0.2).
Install it with composer require jsefton/laravel-queue-logger.
Discover more Laravel packages by jsefton
or browse all Laravel packages to compare alternatives.
Last updated
Creates a log of all queue jobs in a database table to help with auditing jobs.
Able to store and provide:
composer require jsefton/laravel-queue-logger
Run migrations to create 'queue_logs' table:
php artisan migrate
This package will automatically register the event listeners and data will be inserted within the 'queue_logs' table.
An eloquent model exists if you wish to query the data back out as: JSefton\QueueLogger\QueueLog
Please note currently for Laravel 7+ until tested and verified in lower versions.