From a77bc113269e88d264075d331570dccf662b9640 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 12 Oct 2010 12:25:34 -0700 Subject: [PATCH] Output a log message when issuing a request token --- actions/apioauthrequesttoken.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/actions/apioauthrequesttoken.php b/actions/apioauthrequesttoken.php index 825460f93c..478d2dbfc4 100644 --- a/actions/apioauthrequesttoken.php +++ b/actions/apioauthrequesttoken.php @@ -100,6 +100,16 @@ class ApiOauthRequestTokenAction extends ApiOauthAction // check signature and issue a new request token $token = $server->fetch_request_token($req); + common_log( + LOG_INFO, + sprintf( + "API OAuth - Issued request token %s for consumer %s with oauth_callback %s", + $token->key, + $req->get_parameter('oauth_consumer_key'), + "'" . $req->get_parameter('oauth_callback') ."'" + ) + ); + // return token to the client $this->showRequestToken($token);