live-controls / trellog
There is no license information available for the latest version (v1.1.1) of this package.
Error logging from Laravel to Trello
v1.1.1
2025-04-27 17:10 UTC
Requires
- guzzlehttp/guzzle: ^7.9
Requires (Dev)
README
Logger for Laravel to Trello
Env variables
TRELLOG_KEY => Trello Api Key TRELLOG_TOKEN => Trello Api Token TRELLOG_LIST_ERRORS => List to add errors
Usage
Add to bootstrap/app.php:
->withExceptions(function (Exceptions $exceptions) {
$exceptions->report(function (\Throwable $e) {
SendTrellog::dispatch($e);
});
})
Configuration
- 'apikey': Your Trello API Key
- 'token': Your Trello API tokenn
- 'list_errors' => The Id of the list you want to upload the errors to. This can be found by https://trello.com/b/LINK_TO_YOUR_BOARD.json
- 'queue' => The queue TRELLOG will be running on
- 'cooldown' => The cooldown in minutes before a report with the same fingerprint is uploaded again. If set to FALSE this feature will be disabled. Important to know that this only works with Cache that support TTL!