mirror of
https://github.com/friendica/friendica
synced 2025-04-25 00:30:32 +00:00
Reduce the amount of contact updates
This commit is contained in:
parent
8623c075af
commit
d504789c34
5 changed files with 60 additions and 33 deletions
|
@ -73,7 +73,7 @@ class UpdateServerDirectory
|
|||
|
||||
$result = Contact::addByUrls($urls);
|
||||
|
||||
Logger::info('PoCo discovery ended', ['count' => $result['count'], 'added' => $result['added'], 'updated' => $result['updated'], 'poco' => $gserver['poco']]);
|
||||
Logger::info('PoCo discovery ended', ['count' => $result['count'], 'added' => $result['added'], 'updated' => $result['updated'], 'unchanged' => $result['unchanged'], 'poco' => $gserver['poco']]);
|
||||
}
|
||||
|
||||
private static function discoverMastodonDirectory(array $gserver)
|
||||
|
@ -101,6 +101,6 @@ class UpdateServerDirectory
|
|||
|
||||
$result = Contact::addByUrls($urls);
|
||||
|
||||
Logger::info('Account discovery ended', ['count' => $result['count'], 'added' => $result['added'], 'updated' => $result['updated'], 'url' => $gserver['url']]);
|
||||
Logger::info('Account discovery ended', ['count' => $result['count'], 'added' => $result['added'], 'updated' => $result['updated'], 'unchanged' => $result['unchanged'], 'url' => $gserver['url']]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue