From: Mike Macgirvin Date: Fri, 15 Oct 2010 11:36:39 +0000 (-0700) Subject: add recipient url to pubsub instrumentation X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a1d37b6cc42c7f50007fdf081c3b0def5daa4395;p=friendica.git add recipient url to pubsub instrumentation --- 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);