From 9b49fd7f3ff92b5d6efa68913bf445ffcdb0eb99 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 25 Jun 2019 17:36:24 +0000 Subject: [PATCH] Changed logging --- src/Worker/Cron.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Worker/Cron.php b/src/Worker/Cron.php index d20bfd133e..d7ce1b9b48 100644 --- a/src/Worker/Cron.php +++ b/src/Worker/Cron.php @@ -138,12 +138,18 @@ class Cron Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, 0, $last_updated]; $total = DBA::count('contact', $condition); - $contacts = DBA::select('contact', ['id'], $condition, ['limit' => 1000]); + $oldest_date = ''; + $oldest_id = ''; + $contacts = DBA::select('contact', ['id', 'last-update'], $condition, ['limit' => 100, 'order' => ['last-update']]); while ($contact = DBA::fetch($contacts)) { + if (empty($oldest_id)) { + $oldest_id = $contact['id']; + $oldest_date = $contact['last-update']; + } Worker::add(PRIORITY_LOW, "UpdateContact", $contact['id'], 'force'); ++$count; } - Logger::info('Initiated update for public contacts', ['interval' => $count, 'total' => $total]); + Logger::info('Initiated update for public contacts', ['interval' => $count, 'total' => $total, 'id' => $oldest_id, 'oldest' => $oldest_date]); DBA::close($contacts); }