ebethus / laravel-mysql-log-driver
Laravel 10+ MySQL driver for Monolog
v1.0.7
2023-07-26 14:17 UTC
Requires
- php: >=7.3.0
- laravel/framework: ^5.3|^6.0|^7.0|^8.0|^9.0|^10.0
- rorecek/laravel-ulid: ^2.0
README
This package will log errors into MySQL database instead storage/log/laravel.log
file.
Installation
composer require itelmenko/laravel-mysql-logger
If you wish to change default table name to write the log into or database connection use following definitions in your .env file
DB_LOG_TABLE=logs
DB_LOG_CONNECTION=mysql
Publish config using Laravel Artisan CLI.
php artisan vendor:publish
Migrate tables.
php artisan migrate
Using
In config/logging.php
<?php // [...] 'channels' => [ 'stack' => [ 'driver' => 'stack', 'channels' => ['mysql'], ], // [...] 'mysql' => [ 'driver' => 'custom', 'via' => ITelmenko\Logger\Laravel\Logging\MySQLLogger::class, 'connection' => env('DB_LOG_CONNECTION'), 'table' => env('DB_LOG_TABLE'), 'name' => 'my.channel' // optional ], ],
Somewhere in your application
Log::channel('mysql')->info('Something happened!');
TODO
Change$table->bigIncrements('id')
to something like ULIDChange root namespace toITelmenko
Removeextra
fields from modelRemove updated_at?Add microseconds for created_at- Update version and readme.md (about a changing of migration, about vendor:publish)
- Add
php doc
- Add phpcs