reduce log level of inbound d* posts until we get through some of the more serious federation issues

This commit is contained in:
friendica 2014-09-09 20:32:03 -07:00
parent 5ede60e742
commit 89b65e554c
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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);