Skip to content

Commit fa2032b

Browse files
committed
wip
1 parent fd160d3 commit fa2032b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/Console/Cron.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ public function schedule(Schedule $schedule)
1616
$schedule->call(fn () => new PruneOldFilesJob()->dispatch())->everyFiveMinutes();
1717
$schedule->call(fn () => new PruneOrphanedLogFilesJob()->dispatch())->dailyAt('20:00');
1818

19-
$schedule->call(fn () => new SendPendingAlertsJob()->dispatch(delayInSeconds: 30))->everyMinute();
19+
$schedule->call(fn () => new SendPendingAlertsJob()->dispatch(delayInSeconds: 15))->everyMinute();
2020
}
2121
}

config/logging.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
'events' => [
7777
'driver' => 'daily',
7878
'path' => storage_path('logs/events.log'),
79-
'level' => 'debug',
79+
'level' => env('WATCHTOWER_ENABLE_EVENTS_LOG', true) ? 'debug' : 'critical',
8080
'days' => 7,
8181
'name' => '', // prevents logging the environment name
8282
'replace_placeholders' => true,

0 commit comments

Comments
 (0)