ฉันได้ผลวิธีง่ายๆ:
ฉันพบปัญหาเดียวกันในLaravel 5.6
ในconfig/logging.php
ฉันเพิ่งอัปเดตค่าเส้นทางของช่องรายวันด้วยphp_sapi_name()
ในนั้น
สิ่งนี้จะสร้างเอกสารแยกต่างหากสำหรับ php_sapi_name ที่แตกต่างกันและวางไฟล์บันทึกที่มีการประทับเวลาลงในไดเร็กทอรี perticular
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/' . php_sapi_name() . '/laravel.log'),
'level' => 'debug',
'days' => 7,
]
สำหรับฉัน
- ไฟล์บันทึกถูกสร้างขึ้นภายใต้
fpm-fcgi
ไดเร็กทอรี: บันทึกจากเว็บไซต์owner: www-data
- ไฟล์บันทึกถูกสร้างขึ้นภายใต้
cli
ไดเร็กทอรี: จากคำสั่ง artisan (cronjob)owner: root
ข้อมูลเพิ่มเติมเกี่ยวกับการบันทึก Laravel 5.6: https://laravel.com/docs/5.6/logging
นี่คือconfig/logging.php
ไฟล์ของฉัน:
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Log Channel
|--------------------------------------------------------------------------
|
| This option defines the default log channel that gets used when writing
| messages to the logs. The name specified in this option should match
| one of the channels defined in the "channels" configuration array.
|
*/
'default' => env('LOG_CHANNEL', 'stack'),
/*
|--------------------------------------------------------------------------
| Log Channels
|--------------------------------------------------------------------------
|
| Here you may configure the log channels for your application. Out of
| the box, Laravel uses the Monolog PHP logging library. This gives
| you a variety of powerful log handlers / formatters to utilize.
|
| Available Drivers: "single", "daily", "slack", "syslog",
| "errorlog", "custom", "stack"
|
*/
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => ['daily'],
],
'single' => [
'driver' => 'single',
'path' => storage_path('logs/laravel.log'),
'level' => 'debug',
],
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/' . php_sapi_name() . '/laravel.log'),
'level' => 'debug',
'days' => 7,
],
'slack' => [
'driver' => 'slack',
'url' => env('LOG_SLACK_WEBHOOK_URL'),
'username' => 'Laravel Log',
'level' => 'critical',
],
'syslog' => [
'driver' => 'syslog',
'level' => 'debug',
],
'errorlog' => [
'driver' => 'errorlog',
'level' => 'debug',
],
],
];
cron
งานtouch
เป็นไฟล์บันทึกใหม่ตอนเที่ยงคืนของทุกวัน (แน่นอนว่าอยู่ภายใต้ผู้ใช้ที่ถูกต้อง)