aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-09-09 20:32:03 -0700
committerfriendica <info@friendica.com>2014-09-09 20:32:03 -0700
commit89b65e554cbf00ac78de6f1e0edebe63417c4538 (patch)
treef3d8a32f35bfe0bb5aa71bca65a28b16c9e71d79
parent5ede60e742e8dcb974d0b2f7f7a2f4300eb26713 (diff)
downloadvolse-hubzilla-89b65e554cbf00ac78de6f1e0edebe63417c4538.tar.gz
volse-hubzilla-89b65e554cbf00ac78de6f1e0edebe63417c4538.tar.bz2
volse-hubzilla-89b65e554cbf00ac78de6f1e0edebe63417c4538.zip
reduce log level of inbound d* posts until we get through some of the more serious federation issues
-rwxr-xr-xinclude/diaspora.php2
-rw-r--r--mod/receive.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/diaspora.php b/include/diaspora.php
index ae2db9407..1d0896936 100755
--- a/include/diaspora.php
+++ b/include/diaspora.php
@@ -1805,6 +1805,7 @@ function diaspora_like($importer,$xml,$msg) {
*/
$signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle;
+
$key = $msg['key'];
if($parent_author_signature) {
@@ -1894,7 +1895,6 @@ function diaspora_like($importer,$xml,$msg) {
$arr = array();
- $arr['uri'] = $uri;
$arr['uid'] = $importer['channel_id'];
$arr['aid'] = $importer['channel_account_id'];
$arr['mid'] = $guid;
diff --git a/mod/receive.php b/mod/receive.php
index 4071b169b..2a68019e0 100644
--- a/mod/receive.php
+++ b/mod/receive.php
@@ -58,7 +58,7 @@ function receive_post(&$a) {
logger('mod-diaspora: decoded', LOGGER_DEBUG);
- logger('mod-diaspora: decoded msg: ' . print_r($msg,true), LOGGER_DATA);
+ logger('mod-diaspora: decoded msg: ' . print_r($msg,true), LOGGER_DEBUG);
if(! is_array($msg))
http_status_exit(500);