diff options
author | Marco Ceppi <marco@ceppi.net> | 2012-12-21 13:41:07 -0800 |
---|---|---|
committer | Marco Ceppi <marco@ceppi.net> | 2012-12-21 13:41:07 -0800 |
commit | bf06401859679de62d7f5e1dc821c5f96cd0e83f (patch) | |
tree | 5742d9aada94e0b12fa702c9608b5069dc925845 | |
parent | 39206ec13b29e43f8cf604158ac7d1530ec29ee1 (diff) | |
parent | 570ab576d4866f88610f592013b5e0fc20a0f634 (diff) | |
download | php-openid-bf06401859679de62d7f5e1dc821c5f96cd0e83f.zip php-openid-bf06401859679de62d7f5e1dc821c5f96cd0e83f.tar.gz php-openid-bf06401859679de62d7f5e1dc821c5f96cd0e83f.tar.bz2 |
Merge pull request #61 from JonTheNiceGuy/removelogging
Removed logging calls for a successful retrieval, as the PlainHTTPFetcher doesn't perform logging on a successful commit.
-rw-r--r-- | Auth/Yadis/ParanoidHTTPFetcher.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Auth/Yadis/ParanoidHTTPFetcher.php b/Auth/Yadis/ParanoidHTTPFetcher.php index 4848a2b..125029c 100644 --- a/Auth/Yadis/ParanoidHTTPFetcher.php +++ b/Auth/Yadis/ParanoidHTTPFetcher.php @@ -179,10 +179,6 @@ class Auth_Yadis_ParanoidHTTPFetcher extends Auth_Yadis_HTTPFetcher { } } - Auth_OpenID::log( - "Successfully fetched '%s': GET response code %s", - $url, $code); - return new Auth_Yadis_HTTPResponse($url, $code, $new_headers, $body); } @@ -263,9 +259,6 @@ class Auth_Yadis_ParanoidHTTPFetcher extends Auth_Yadis_HTTPFetcher { } - Auth_OpenID::log("Successfully fetched '%s': POST response code %s", - $url, $code); - return new Auth_Yadis_HTTPResponse($url, $code, $new_headers, $body); } |