custom log date format

This commit is contained in:
xiaomlove
2021-04-26 20:51:41 +08:00
parent 63a2c71cb6
commit 465fd2bca8
2 changed files with 2 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ class NexusFormatter
protected function formatter() protected function formatter()
{ {
$format = "[%datetime%] [" . REQUEST_ID . "] %channel%.%level_name%: %message% %context% %extra%\n"; $format = "[%datetime%] [" . REQUEST_ID . "] %channel%.%level_name%: %message% %context% %extra%\n";
return tap(new LineFormatter($format, null, true, true), function ($formatter) { return tap(new LineFormatter($format, 'Y-m-d H:i:s', true, true), function ($formatter) {
$formatter->includeStacktraces(); $formatter->includeStacktraces();
}); });
} }

View File

@@ -37,7 +37,6 @@ return [
'channels' => [ 'channels' => [
'stack' => [ 'stack' => [
'driver' => 'stack', 'driver' => 'stack',
'tab' => [\App\Logging\NexusFormatter::class],
'channels' => ['daily'], 'channels' => ['daily'],
'ignore_exceptions' => false, 'ignore_exceptions' => false,
], ],
@@ -52,7 +51,7 @@ return [
'driver' => 'daily', 'driver' => 'daily',
'path' => env('LOG_FILE', '/tmp/nexus.log'), 'path' => env('LOG_FILE', '/tmp/nexus.log'),
'level' => env('LOG_LEVEL', 'debug'), 'level' => env('LOG_LEVEL', 'debug'),
'tab' => [\App\Logging\NexusFormatter::class], 'tap' => [\App\Logging\NexusFormatter::class],
'days' => 14, 'days' => 14,
], ],