Package Data | |
---|---|
Maintainer Username: | thelfensdrfer |
Maintainer Contact: | tim@visualappeal.de (Tim Helfensdörfer) |
Package Create Date: | 2017-02-12 |
Package Last Update: | 2020-04-03 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-14 15:15:43 |
Package Statistics | |
---|---|
Total Downloads: | 537 |
Monthly Downloads: | 17 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Laravel package to log messages into a database.
Via Composer
$ composer require visualappeal/databaselogger
Add the following lines in your config/logging.php
:
'db' => [
'driver' => 'custom',
'via' => VisualAppeal\DatabaseLogger\DatabaseLogger::class,
'level' => env('LOG_LEVEL', 'debug'), // Optional
'connection' => env('LOG_DATABASE', 'mysql'), // Optional
'table' => env('LOG_TABLE', 'logs'), // Optional
// Encryption requires sodium: https://secure.php.net/manual/en/book.sodium.php
'encrypt' => env('LOG_ENCRYPT', false), // Optional, encrypt the context part of the log message before inserting it into the database
'encrypt_key' => env('LOG_ENCRYPT_KEY', env('APP_KEY', '')), // Optional, only used if encrypt is true
],
Database migrations are automatically registered, you only have to call php artisan migrate
after installing the package.
If you discover any security related issues, please email tim@visualappeal.de instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.