]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
LOG_ERROR
authorEvan Prodromou <evan@prodromou.name>
Fri, 18 Jul 2008 19:10:19 +0000 (15:10 -0400)
committerEvan Prodromou <evan@prodromou.name>
Fri, 18 Jul 2008 19:10:19 +0000 (15:10 -0400)
darcs-hash:20080718191019-84dde-8b16ec097fedfb3a4366e4c4317248452b368bfc.gz

maildaemon.php

index 072f895b83d0a863543de74a0ec0f289f338a282..dcd4b2d30d21cbebfa1e44aeb3c491dca80e3093 100755 (executable)
@@ -88,7 +88,7 @@ class MailerDaemon {
                $id = $notice->insert();
                if (!$id) {
                        $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
-                       $this->log(LOG_ERROR,
+                       $this->log(LOG_ERR,
                                           'Could not insert ' . common_log_objstring($notice) .
                                           ' for user ' . common_log_objstring($user) .
                                           ': ' . $last_error->message);
@@ -99,7 +99,7 @@ class MailerDaemon {
                $result = $notice->update($orig);
                if (!$result) {
                        $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
-                       $this->log(LOG_ERROR,
+                       $this->log(LOG_ERR,
                                           'Could not add URI to ' . common_log_objstring($notice) .
                                           ' for user ' . common_log_objstring($user) .
                                           ': ' . $last_error->message);