mirror of
https://github.com/friendica/friendica
synced 2025-04-27 08:30:10 +00:00
Switch all item deletion logging to info level
This commit is contained in:
parent
b4597a643d
commit
f047944b2d
5 changed files with 13 additions and 13 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue