diff options
author | Mario <mario@mariovavti.com> | 2023-10-25 13:06:24 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-10-25 13:06:24 +0000 |
commit | 4f55248a6ccafb5dc3ed598c58b8201cf2e07fc9 (patch) | |
tree | 0053ab8dcba987e9cadbb6a6598a61f486e3eceb | |
parent | 61b46f1a3e3291ec8b3ea0251d5165b8eb7b08d7 (diff) | |
parent | 286104a988e4c21fc903518128317ce6abf204ce (diff) | |
download | volse-hubzilla-4f55248a6ccafb5dc3ed598c58b8201cf2e07fc9.tar.gz volse-hubzilla-4f55248a6ccafb5dc3ed598c58b8201cf2e07fc9.tar.bz2 volse-hubzilla-4f55248a6ccafb5dc3ed598c58b8201cf2e07fc9.zip |
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
-rw-r--r-- | Zotlabs/Lib/JSalmon.php | 2 | ||||
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 2 | ||||
-rw-r--r-- | Zotlabs/Lib/Zotfinger.php | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Lib/JSalmon.php b/Zotlabs/Lib/JSalmon.php index f9fe99706..5531f791f 100644 --- a/Zotlabs/Lib/JSalmon.php +++ b/Zotlabs/Lib/JSalmon.php @@ -52,7 +52,7 @@ class JSalmon { . base64url_encode($x['alg'],true); $key = HTTPSig::get_key(EMPTY_STR,'zot6',base64url_decode($x['sigs']['key_id'])); - logger('key: ' . print_r($key,true)); + logger('key: ' . print_r($key,true), LOGGER_DATA); if($key['portable_id'] && $key['public_key']) { if(Crypto::verify($signed_data,base64url_decode($x['sigs']['value']),$key['public_key'])) { logger('verified'); diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 383785992..fba9f118e 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -2013,7 +2013,7 @@ class Libzot { // logger($AS->debug()); if(empty($AS->actor['id'])) { - logger('No actor id!'); + logger('No actor id: ' . print_r($AS, true)); continue; } diff --git a/Zotlabs/Lib/Zotfinger.php b/Zotlabs/Lib/Zotfinger.php index 16ed772c0..ccf64d6d1 100644 --- a/Zotlabs/Lib/Zotfinger.php +++ b/Zotlabs/Lib/Zotfinger.php @@ -41,7 +41,7 @@ class Zotfinger { logger('logger_stats_data cmd:Zotfinger' . ' start:' . $start_timestamp . ' ' . 'end:' . microtime(true) . ' meta:' . $resource . '#' . random_string(16)); btlogger('Zotfinger'); - logger('fetch: ' . print_r($x,true)); + logger('fetch: ' . print_r($x,true), LOGGER_DATA); if (in_array(intval($x['return_code']), [ 404, 410 ]) && $recurse) { @@ -78,7 +78,7 @@ class Zotfinger { $result['data'] = json_decode(Crypto::unencapsulate($result['data'],get_config('system','prvkey')),true); } - logger('decrypted: ' . print_r($result,true)); + logger('decrypted: ' . print_r($result,true), LOGGER_DATA); return $result; } |