]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
s/LOG_WARN/LOG_WARNING/
authorZach Copley <zach@status.net>
Wed, 27 Jan 2010 08:45:56 +0000 (08:45 +0000)
committerZach Copley <zach@status.net>
Wed, 27 Jan 2010 08:45:56 +0000 (08:45 +0000)
actions/apioauthaccesstoken.php
actions/apioauthrequesttoken.php

index 085ef6f0b1dba92fab4b2212b8ad2da8e0377e45..887df4c20d7170ce6d564f4abe9135ba7f043bae 100644 (file)
@@ -70,7 +70,7 @@ class ApiOauthAccessTokenAction extends ApiOauthAction
             $atok = $server->fetch_access_token($req);
 
         } catch (OAuthException $e) {
-            common_log(LOG_WARN, 'API OAuthException - ' . $e->getMessage());
+            common_log(LOG_WARNING, 'API OAuthException - ' . $e->getMessage());
             common_debug(var_export($req, true));
             $this->outputError($e->getMessage());
             return;
index 467640b9aacf5d32864179da2d4ceaea02d50868..4fa626d866a084bfbd8e127d601a6e4cfa53309c 100644 (file)
@@ -89,7 +89,7 @@ class ApiOauthRequestTokenAction extends ApiOauthAction
             $token = $server->fetch_request_token($req);
             print $token;
         } catch (OAuthException $e) {
-            common_log(LOG_WARN, 'API OAuthException - ' . $e->getMessage());
+            common_log(LOG_WARNING, 'API OAuthException - ' . $e->getMessage());
             header('HTTP/1.1 401 Unauthorized');
             header('Content-Type: text/html; charset=utf-8');
             print $e->getMessage() . "\n";