diff options
author | Friendika <info@friendika.com> | 2010-11-25 18:50:28 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-25 18:50:28 -0800 |
commit | cce73807569187d6633176c5c738cd103e2ec669 (patch) | |
tree | 6a166d1324d8b5e956d7888ccd40bfd43635fe42 /mod/pubsub.php | |
parent | 60ef474d4607fa48a4b5c4d54cbad2b8e2fe9fef (diff) | |
download | volse-hubzilla-cce73807569187d6633176c5c738cd103e2ec669.tar.gz volse-hubzilla-cce73807569187d6633176c5c738cd103e2ec669.tar.bz2 volse-hubzilla-cce73807569187d6633176c5c738cd103e2ec669.zip |
more optimising when confronted with dead servers
Diffstat (limited to 'mod/pubsub.php')
-rw-r--r-- | mod/pubsub.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/pubsub.php b/mod/pubsub.php index c55100c96..4f4ed2f16 100644 --- a/mod/pubsub.php +++ b/mod/pubsub.php @@ -39,7 +39,8 @@ function pubsub_init(&$a) { $hub_lease = ((x($_GET,'hub_lease_seconds')) ? notags(trim($_GET['hub_lease_seconds'])) : ''); $hub_verify = ((x($_GET,'hub_verify_token')) ? notags(trim($_GET['hub_verify_token'])) : ''); - logger('pubsub: Subscription from' . $_SERVER['REMOTE_ADDR'] . print_r($_GET,true)); + logger('pubsub: Subscription from ' . $_SERVER['REMOTE_ADDR']); + logger('pubsub: data: ' . print_r($_GET,true), LOGGER_DATA); $subscribe = (($hub_mode === 'subscribe') ? 1 : 0); |