]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/RemoveContact.php
New "fcontact" model class
[friendica.git] / src / Worker / RemoveContact.php
index cfec2c1846ce724f2cbf45ae0efda3b54ba7c12f..28a32160a014c7c830f5f5d5fb71952701792030 100644 (file)
@@ -43,7 +43,7 @@ class RemoveContact {
                do {
                        $items = Item::select(['id', 'guid'], $condition, ['limit' => 100]);
                        while ($item = Item::fetch($items)) {
-                               Logger::notice('Delete removed contact item', ['id' => $item['id'], 'guid' => $item['guid']]);
+                               Logger::info('Delete removed contact item', ['id' => $item['id'], 'guid' => $item['guid']]);
                                DBA::delete('item', ['id' => $item['id']]);
                        }
                        DBA::close($items);