From 0a63e69b2353824cff500b871f0e9afe980844d7 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Mon, 1 Dec 2014 19:18:50 +0000 Subject: [PATCH] fixed log level --- lam/lib/account.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/account.inc b/lam/lib/account.inc index 5b2430a6..c78011b7 100644 --- a/lam/lib/account.inc +++ b/lam/lib/account.inc @@ -1115,7 +1115,7 @@ function sendEMail($to, $subject, $text, $headers) { $text = str_replace("\r\n", "\n", $text); $headers = str_replace("\r\n", "\n", $headers); } - logNewMessage(LOG_WARNING, $text); + logNewMessage(LOG_DEBUG, "Send mail to $to\n" . $text); return mail($to, base64EncodeForEMail($subject), $text, $headers); }