enkidu / laravel-log
Laravel Log
v1.0.0
2020-03-27 01:35 UTC
Requires
- php: ^7.2
- psr/log: ^1.1
Requires (Dev)
- nunomaduro/phpinsights: ^1.14
- orchestra/testbench: ^5.1
- timacdonald/log-fake: ^1.6
This package is auto-updated.
Last update: 2025-03-27 13:12:06 UTC
README
Existing Logs
Exception Log
try { throw new Exception('Test'); } catch (Exception $exception) { \Enkidu\Log\Facades\ExceptionLogger::logException($exception); // exception.log }
Debug Log
\Enkidu\Log\Facades\DebugLogger::info('Test'); // debug.log
Creating custom log
- Add logging channel in
config/logging.php
'channels' => [ ... 'test' => [ 'driver' => 'single', 'path' => storage_path('logs/test.log'), 'level' => 'info', ], ... ]
- Create custom logging class
class TestLogger extends BaseLogger { /** * @inheritDoc */ protected function getLoggingChannel(): string { return 'test'; } }
How to use
$test = new \App\Logger\TestLogger; $test->info('Test'); // test.log