yomafleet / event-logger
Log in YF's preference format
Installs: 6 290
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: ^7.3|^8.0
- illuminate/support: ^8.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.5
This package is not auto-updated.
Last update: 2025-03-25 13:55:45 UTC
README
Event logging with yomafleet's prefer format. Use monolog package underlying.
Installtion
composer require yomafleet/event-logger
Parameters
name | type | description |
---|---|---|
$level | String | Log level as in RFC 5424 |
$message | String | Short and descriptive message |
$data | Array | Payload array with required keys. |
$data['event'] | String | Name of the event separated by dot. For example, user.updated |
$data['data'] | Array | Arbitrary data to log. |
$data['trigger_by'] | Array | The trigger of the given event. If not provided, this app will try to guess from authenticated user first, then as a system user. |
$data['type] | String | Type of the $data['data'], for example, user . If not provided, the first segement of $data['event'] will be added. |
Usage
<?php namespace App; use Yomafleet\EventLogger\EventLoggerFacade as EventLogger; class Example { public function example() { //... //... //... EventLogger::log( 'info', 'example', $data ); } }