diff options
author | Max Kostikov <max@kostikov.co> | 2020-11-15 11:09:44 +0100 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2020-11-15 11:09:44 +0100 |
commit | 38985dc4e2a05e4746e1d0fc7bdb09ec55273e54 (patch) | |
tree | 7be5457bcd756985adc7025db9424972f74a4a6c /Zotlabs/Lib/LDSignatures.php | |
parent | 7cf9b85a97829dc6e11fef4dcafeebe746084c1f (diff) | |
parent | e74c52094f218686c59ddb5f6c186f02158cf89a (diff) | |
download | volse-hubzilla-38985dc4e2a05e4746e1d0fc7bdb09ec55273e54.tar.gz volse-hubzilla-38985dc4e2a05e4746e1d0fc7bdb09ec55273e54.tar.bz2 volse-hubzilla-38985dc4e2a05e4746e1d0fc7bdb09ec55273e54.zip |
Merge branch 'dev' into 'dev'
Dev sync
See merge request kostikov/core!1
Diffstat (limited to 'Zotlabs/Lib/LDSignatures.php')
-rw-r--r-- | Zotlabs/Lib/LDSignatures.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Lib/LDSignatures.php b/Zotlabs/Lib/LDSignatures.php index 16c8cfc18..2eba66ccf 100644 --- a/Zotlabs/Lib/LDSignatures.php +++ b/Zotlabs/Lib/LDSignatures.php @@ -93,7 +93,8 @@ class LDSignatures { $d = jsonld_normalize($data,[ 'algorithm' => 'URDNA2015', 'format' => 'application/nquads' ]); } catch (\Exception $e) { - logger('normalise error:' . print_r($e,true)); + // Don't log the exception - this can exhaust memory + // logger('normalise error:' . print_r($e,true)); logger('normalise error: ' . print_r($data,true)); } |