From a534c142c1af342cc6ca98fa615a172c2c25acea Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 23 Feb 2021 06:20:17 +0100 Subject: [PATCH] Extra debug for https://github.com/firefly-iii/firefly-iii/issues/4424 --- app/Support/Http/Controllers/GetConfigurationData.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Support/Http/Controllers/GetConfigurationData.php b/app/Support/Http/Controllers/GetConfigurationData.php index ae21096ea5..2e1a5c32ba 100644 --- a/app/Support/Http/Controllers/GetConfigurationData.php +++ b/app/Support/Http/Controllers/GetConfigurationData.php @@ -205,6 +205,7 @@ trait GetConfigurationData $config = app('fireflyconfig')->get('last_rt_job', 0); $lastTime = (int)$config->data; $now = time(); + Log::debug(sprintf('verifyRecurringCronJob: last time is %d ("%s"), now is %d', $lastTime, $config->data, $now)); if (0 === $lastTime) { request()->session()->flash('info', trans('firefly.recurring_never_cron'));