From a1d37b6cc42c7f50007fdf081c3b0def5daa4395 Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Fri, 15 Oct 2010 04:36:39 -0700 Subject: [PATCH] add recipient url to pubsub instrumentation --- mod/pubsub.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/pubsub.php b/mod/pubsub.php index 693fcbf81c..b0157fbc35 100644 --- a/mod/pubsub.php +++ b/mod/pubsub.php @@ -89,7 +89,7 @@ function pubsub_post(&$a) { $xml = file_get_contents('php://input'); $debugging = get_config('system','debugging'); - $remote_host = 'Pubsub feed arrived from ' . $_SERVER['REMOTE_ADDR'] . ' at ' . datetime_convert() . "\n\n"; + $remote_host = 'Pubsub feed arrived from ' . $_SERVER['REMOTE_ADDR'] . ' at ' . datetime_convert() . ' for ' . $a->cmd . "\n\n"; if($debugging) file_put_contents('pubsub.out', $remote_host . $xml, FILE_APPEND);