Eu fiz isso funcionar de maneira muito simples:
Encontrei o mesmo problema no Laravel 5.6
Em config/logging.php
I acaba de atualizar valor de caminho de canal diário com php_sapi_name()
nela.
Isso cria um diretório separado para diferentes php_sapi_name e coloca o arquivo de log com o carimbo de data / hora em seu diretório perticular.
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/' . php_sapi_name() . '/laravel.log'),
'level' => 'debug',
'days' => 7,
]
Então, para mim,
- Os arquivos de log são criados no
fpm-fcgi
diretório: Logs do site,owner: www-data
- Os arquivos de log são criados no
cli
diretório: a partir do comando artisan (cronjob).owner: root
Mais informações sobre o registro do Laravel 5.6: https://laravel.com/docs/5.6/logging
Aqui está meu config/logging.php
arquivo:
<?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
trabalho paratouch
um novo arquivo de log à meia-noite todos os dias (com o usuário correto, é claro).