Improve debug messages

This commit is contained in:
Diogo Cordeiro
2018-08-01 01:58:31 +01:00
parent 69b252b244
commit d76ac3760b
2 changed files with 6 additions and 4 deletions

View File

@@ -99,10 +99,12 @@ class ActivityPubPlugin extends Plugin
if ($candidate->getUrl() == $url) { // Sanity check
return $candidate;
} else {
throw new Exception("Notice not found.");
common_debug ('ActivityPubPlugin Notice Grabber: '.$candidate->getUrl(). ' is different of '.$url);
throw new Exception('Notice not found.');
}
} catch (Exception $e) {
throw new Exception("Notice not found.");
common_debug ('ActivityPubPlugin Notice Grabber failed to find: '.$url);
throw new Exception('Notice not found.');
}
}
}