From 91cac6495c8ed08ddf98e82d7b9d5342e86e2d76 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 18 Jul 2008 15:10:19 -0400 Subject: [PATCH] LOG_ERROR darcs-hash:20080718191019-84dde-8b16ec097fedfb3a4366e4c4317248452b368bfc.gz --- maildaemon.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maildaemon.php b/maildaemon.php index 072f895b83..dcd4b2d30d 100755 --- a/maildaemon.php +++ b/maildaemon.php @@ -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);