From e5a24dd8d2d0d4c27732532654ff99e5834bda58 Mon Sep 17 00:00:00 2001 From: jensp Date: Tue, 12 May 2015 08:15:53 +0000 Subject: [PATCH] Changed log level for message written to log if sending the recovery mail fails from debug to warn. git-svn-id: https://svn.libreccm.org/ccm/trunk@3391 8810af33-2d31-482b-a856-94f89814c4df --- ccm-core/src/com/arsdigita/ui/login/RecoverPasswordPanel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccm-core/src/com/arsdigita/ui/login/RecoverPasswordPanel.java b/ccm-core/src/com/arsdigita/ui/login/RecoverPasswordPanel.java index 60643c9b4..712f3b87a 100755 --- a/ccm-core/src/com/arsdigita/ui/login/RecoverPasswordPanel.java +++ b/ccm-core/src/com/arsdigita/ui/login/RecoverPasswordPanel.java @@ -316,7 +316,7 @@ public class RecoverPasswordPanel extends SimpleContainer private static void mailFailed (FormSectionEvent event, String reason) { - s_log.debug("Could not notify user for recovery: "+reason); + s_log.warn("Could not notify user for recovery: "+reason); event.getPageState().setValue (DISPLAY_PARAM, MailFailedPane.class.getName()); }