]> git.mxchange.org Git - friendica.git/commitdiff
More logging for the contact discovery
authorMichael <heluecht@pirati.ca>
Sat, 29 May 2021 17:24:50 +0000 (17:24 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 29 May 2021 17:24:50 +0000 (17:24 +0000)
src/Model/Contact/Relation.php

index d9a38e8c3e89ef0b41c0f6921f394519661f402d..b9d38790db5bf4b1a88a1f55a9cd7d3b60ff6e44 100644 (file)
@@ -78,10 +78,12 @@ class Relation
        {
                $contact = Contact::getByURL($url);
                if (empty($contact)) {
+                       Logger::info('Contact not found', ['url' => $url]);
                        return;
                }
 
                if (!self::isDiscoverable($url, $contact)) {
+                       Logger::info('Contact is not discoverable', ['url' => $url]);
                        return;
                }