Add Paddle sync log channel

This commit is contained in:
Codex Agent
2026-01-02 22:02:36 +01:00
parent 0430f0b1cc
commit bb67d68eba
7 changed files with 51 additions and 9 deletions

View File

@@ -80,6 +80,18 @@ return [
'days' => env('LOG_DAILY_DAYS', 14),
'replace_placeholders' => true,
],
'paddle-sync' => [
'driver' => 'stack',
'channels' => explode(',', env('PADDLE_SYNC_LOG_STACK', 'paddle-sync-file')),
'ignore_exceptions' => false,
],
'paddle-sync-file' => [
'driver' => 'daily',
'path' => storage_path('logs/paddle-sync.log'),
'level' => env('LOG_LEVEL', 'info'),
'days' => env('LOG_DAILY_DAYS', 14),
'replace_placeholders' => true,
],
'slack' => [
'driver' => 'slack',