]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/LDSignature.php
Merge pull request #10967 from annando/api
[friendica.git] / src / Util / LDSignature.php
index dcbb9ccae36dcf2ae01397967db9f4af002b6984..f51756633c16c63831ee05f6cfc892c862b5d0e3 100644 (file)
@@ -57,7 +57,7 @@ class LDSignature
                $dhash = self::hash(self::signableData($data));
 
                $x = Crypto::rsaVerify($ohash . $dhash, base64_decode($data['signature']['signatureValue']), $pubkey);
-               Logger::log('LD-verify: ' . intval($x));
+               Logger::notice('LD-verify', ['verified' => (int)$x, 'actor' => $profile['url']]);
 
                if (empty($x)) {
                        return false;