]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/ProfileUpdate.php
Fill the item cache when storing item
[friendica.git] / src / Worker / ProfileUpdate.php
index e9e9afe8d2c9e11c2be988d600f8d06605388626..ba15436d841c0ad189bcb6b6ead793d3e46f58ae 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -41,7 +41,7 @@ class ProfileUpdate {
                $inboxes = ActivityPub\Transmitter::fetchTargetInboxesforUser($uid);
 
                foreach ($inboxes as $inbox => $receivers) {
-                       Logger::log('Profile update for user ' . $uid . ' to ' . $inbox .' via ActivityPub', Logger::DEBUG);
+                       Logger::info('Profile update for user ' . $uid . ' to ' . $inbox .' via ActivityPub');
                        Worker::add(['priority' => $a->getQueueValue('priority'), 'created' => $a->getQueueValue('created'), 'dont_fork' => true],
                                'APDelivery', Delivery::PROFILEUPDATE, 0, $inbox, $uid, $receivers);
                }