LOG_ERROR

darcs-hash:20080718191019-84dde-8b16ec097fedfb3a4366e4c4317248452b368bfc.gz
This commit is contained in:
Evan Prodromou 2008-07-18 15:10:19 -04:00
parent 1378f80dde
commit 91cac6495c
1 changed files with 2 additions and 2 deletions

View File

@ -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);