]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/LRDD/lib/discovery.php
A bit more instructive debugging
[quix0rs-gnu-social.git] / plugins / LRDD / lib / discovery.php
index b32ae13ec56819d4e4055f6b21135ee440d48edb..c8cf3277e27bcaa9238021bfd9a7d3dfe67e61b5 100644 (file)
@@ -93,6 +93,8 @@ class Discovery
         // Normalize the incoming $id to make sure we have a uri
         $uri = self::normalize($id);
 
+        common_debug(sprintf('Performing discovery for "%s" (normalized "%s")', $id, $uri));
+
         foreach ($this->methods as $class) {
             try {
                 $xrd = new XML_XRD();
@@ -117,7 +119,7 @@ class Discovery
                     $headers[] = "Accept: {$link->type}";
                 }
 
-                $response = $client->get($xrd_uri, $headers); 
+                $response = $client->get($xrd_uri, $headers);
                 if ($response->getStatus() != 200) {
                     throw new Exception('Unexpected HTTP status code.');
                 }
@@ -199,5 +201,3 @@ class Discovery
         return $template;
     }
 }
-
-