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
master
jensp 2015-05-12 08:15:53 +00:00
parent 97d238d181
commit e5a24dd8d2
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ public class RecoverPasswordPanel extends SimpleContainer
private static void mailFailed (FormSectionEvent event, private static void mailFailed (FormSectionEvent event,
String reason) 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 event.getPageState().setValue
(DISPLAY_PARAM, MailFailedPane.class.getName()); (DISPLAY_PARAM, MailFailedPane.class.getName());
} }