API: torrents upload/list

This commit is contained in:
xiaomlove
2025-04-17 01:39:40 +07:00
parent 0d3a46231d
commit 2b029eba10
72 changed files with 2332 additions and 507 deletions

View File

@@ -44,14 +44,15 @@ return [
'single' => [
'driver' => 'single',
'tap' => [\App\Logging\NexusFormatter::class],
'path' => env('LOG_FILE', '/tmp/nexus.log'),
'path' => getLogFile(),
'level' => env('LOG_LEVEL', 'debug'),
'ignore_exceptions' => false,
],
'daily' => [
'driver' => 'daily',
'path' => env('LOG_FILE', '/tmp/nexus.log'),
// 'path' => env('LOG_FILE', '/tmp/nexus.log'),
'path' => getLogFile(),
'level' => env('LOG_LEVEL', 'debug'),
'tap' => [\App\Logging\NexusFormatter::class],
'days' => 14,
@@ -104,7 +105,8 @@ return [
],
'emergency' => [
'path' => env('LOG_FILE', '/tmp/nexus.log'),
// 'path' => env('LOG_FILE', '/tmp/nexus.log'),
'path' => getLogFile(),
],
],