diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/hostxrd.php | 1 | ||||
-rw-r--r-- | mod/wfinger.php | 2 | ||||
-rw-r--r-- | mod/xrd.php | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/mod/hostxrd.php b/mod/hostxrd.php index ef86f2dd9..24bd7b048 100644 --- a/mod/hostxrd.php +++ b/mod/hostxrd.php @@ -3,6 +3,7 @@ function hostxrd_init(&$a) { header('Access-Control-Allow-Origin: *'); header("Content-type: text/xml"); + logger('hostxrd',LOGGER_DEBUG); $tpl = get_markup_template('xrd_host.tpl'); $x = replace_macros(get_markup_template('xrd_host.tpl'), array( diff --git a/mod/wfinger.php b/mod/wfinger.php index 1493dd6ba..c61a97b30 100644 --- a/mod/wfinger.php +++ b/mod/wfinger.php @@ -19,7 +19,7 @@ function wfinger_init(&$a) { } $resource = $_REQUEST['resource']; - + logger('webfinger: ' . $resource,LOGGER_DEBUG); $r = null; diff --git a/mod/xrd.php b/mod/xrd.php index d547194ad..a3a73dc4f 100644 --- a/mod/xrd.php +++ b/mod/xrd.php @@ -5,6 +5,7 @@ require_once('include/crypto.php'); function xrd_init(&$a) { $uri = urldecode(notags(trim($_GET['uri']))); + logger('xrd: ' . $uri,LOGGER_DEBUG); if(substr($uri,0,4) === 'http') $name = basename($uri); |