From b364a638e9a0c17d3a647ca421c4b6fa635ab5ac Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 29 Jan 2006 19:19:53 +0000 Subject: [PATCH] Cleaning up debug message --- mail.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mail.php b/mail.php index 9658267..251b29a 100644 --- a/mail.php +++ b/mail.php @@ -335,11 +335,11 @@ class Mail { if (mail($address, $this->subject, $body, $this->headers, "-f {$this->from}")) { - $this->registry->debug("email: sent -> good"); + $this->registry->debug("email: sent to $address"); } else { - $this->registry->debug("email: sent -> error"); + $this->registry->debug("email: error sending to $address"); } } } -- 2.22.5