]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Accidentally used the wrong log level (LOG ERROR instead of LOG_ERR)
authorZach Copley <zach@status.net>
Mon, 24 May 2010 23:27:53 +0000 (23:27 +0000)
committerZach Copley <zach@status.net>
Mon, 24 May 2010 23:27:53 +0000 (23:27 +0000)
plugins/Facebook/facebookutil.php

index d573c34ac13b9df28d3242e06369b72631434385..0f24f5441ed5e039a656d4b4428f6cd6c0dc400c 100644 (file)
@@ -192,7 +192,7 @@ function handleFacebookError($e, $notice, $flink)
             . "\"%s\" (Notice details: nickname=%s, user ID=%d, Facebook ID=%d, notice content=\"%s\"). "
             . "Removing notice from the Facebook queue for safety.";
         common_log(
-            LOG_ERROR, sprintf(
+            LOG_ERR, sprintf(
                 $msg,
                 $notice->id,
                 $errmsg,
@@ -232,7 +232,7 @@ function handleFacebookError($e, $notice, $flink)
             . "nickname=%s, user ID=%d, Facebook ID=%d, notice content=\"%s\"). Re-queueing "
             . "notice, and will try to send again later.";
         common_log(
-            LOG_ERROR, sprintf(
+            LOG_ERR, sprintf(
                 $msg,
                 $notice->id,
                 $code,
@@ -351,7 +351,7 @@ function updateProfileBox($facebook, $flink, $notice, $user) {
 
     common_debug(
           'FacebookPlugin - Attempting to update profile box with '
-          . "content from notice $notice->id for $user->nickname ($user->id)"
+          . "content from notice $notice->id for $user->nickname ($user->id)"
           . "Facebook UID: $fbuid"
     );