diff options
author | friendica <info@friendica.com> | 2012-12-31 14:45:26 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-31 14:45:26 -0800 |
commit | 791302f317de466a079b71e548892c4ffc172005 (patch) | |
tree | b930cf8499a93f438974f00ef7cbd57ef07f36f6 /include/zot.php | |
parent | db16ea8527c27e9012e5683058a97f33e25eb44b (diff) | |
download | volse-hubzilla-791302f317de466a079b71e548892c4ffc172005.tar.gz volse-hubzilla-791302f317de466a079b71e548892c4ffc172005.tar.bz2 volse-hubzilla-791302f317de466a079b71e548892c4ffc172005.zip |
more delivery diagnostics
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/include/zot.php b/include/zot.php index 94bebbd57..3a06366f6 100644 --- a/include/zot.php +++ b/include/zot.php @@ -607,12 +607,20 @@ function import_xchan($arr) { return $ret; } -function zot_process_response($arr,$outq) { - if(! $arr['success']) +function zot_process_response($hub,$arr,$outq) { + + if(! $arr['success']) { + logger('zot_process_response: failed: ' . $hub); return; + } $x = json_decode($arr['body'],true); + if(! $x) { + logger('zot_process_response: No json from ' . $hub); + logger('zot_process_response: headers: ' . print_r($arr['header'],true), LOGGER_DATA); + } + // synchronous message types are handled immediately // async messages remain in the queue until processed. |