]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/LDSignature.php
Friendica copyright changed from 2023 to 2034
[friendica.git] / src / Util / LDSignature.php
index 359fbdf17d888259b52589e90952c97eb7b95830..65695a5216f24507a8f1c6a78b6195185a54fb76 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2023, the Friendica project
+ * @copyright Copyright (C) 2010-2024, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -69,7 +69,7 @@ class LDSignature
                $dhash = self::hash(self::signableData($data));
 
                $x = Crypto::rsaVerify($ohash . $dhash, base64_decode($data['signature']['signatureValue']), $pubkey);
-               Logger::notice('LD-verify', ['verified' => (int)$x, 'actor' => $profile['url']]);
+               Logger::info('LD-verify', ['verified' => (int)$x, 'actor' => $profile['url']]);
 
                if (empty($x)) {
                        return false;