mirror of
https://github.com/friendica/friendica
synced 2024-11-19 01:03:40 +00:00
Add context to some logger calls in ActivityPub\Processor
This commit is contained in:
parent
ca65450537
commit
ed89a22995
1 changed files with 2 additions and 2 deletions
|
@ -131,7 +131,7 @@ class Processor
|
|||
{
|
||||
$item = Item::selectFirst(['uri', 'parent-uri', 'gravity'], ['uri' => $activity['id']]);
|
||||
if (!DBA::isResult($item)) {
|
||||
Logger::warning('Unknown item with uri: ' . $activity['id']);
|
||||
Logger::warning('Unknown item', ['uri' => $activity['id']]);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -148,7 +148,7 @@ class Processor
|
|||
if (($item['parent-uri'] != $item['uri']) && ($item['gravity'] == GRAVITY_COMMENT)) {
|
||||
$parent = Item::selectFirst(['id', 'author-link', 'alias'], ['uri' => $item['parent-uri']]);
|
||||
if (!DBA::isResult($parent)) {
|
||||
Logger::warning('Unknown item parent with uri: ' . $item['parent-uri']);
|
||||
Logger::warning('Unknown parent item.', ['uri' => $item['parent-uri']]);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue