]> git.mxchange.org Git - friendica.git/commitdiff
add recipient url to pubsub instrumentation
authorMike Macgirvin <mike@macgirvin.com>
Fri, 15 Oct 2010 11:36:39 +0000 (04:36 -0700)
committerMike Macgirvin <mike@macgirvin.com>
Fri, 15 Oct 2010 11:36:39 +0000 (04:36 -0700)
mod/pubsub.php

index 693fcbf81c485c2bf98d640c68639f6a44f89d87..b0157fbc35ded3b3ffdac9faa4f53ae93a1adf17 100644 (file)
@@ -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);