Merge pull request #10333 from annando/more-logging
More logging for the contact discovery
This commit is contained in:
commit
0b9346c7c0
|
@ -78,10 +78,12 @@ class Relation
|
||||||
{
|
{
|
||||||
$contact = Contact::getByURL($url);
|
$contact = Contact::getByURL($url);
|
||||||
if (empty($contact)) {
|
if (empty($contact)) {
|
||||||
|
Logger::info('Contact not found', ['url' => $url]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!self::isDiscoverable($url, $contact)) {
|
if (!self::isDiscoverable($url, $contact)) {
|
||||||
|
Logger::info('Contact is not discoverable', ['url' => $url]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue