Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASLoginService.java')
-rw-r--r--jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASLoginService.java19
1 files changed, 12 insertions, 7 deletions
diff --git a/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASLoginService.java b/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASLoginService.java
index caf14e8fd4..b130d82470 100644
--- a/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASLoginService.java
+++ b/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASLoginService.java
@@ -1,6 +1,6 @@
//
// ========================================================================
-// Copyright (c) 1995-2012 Mort Bay Consulting Pty. Ltd.
+// Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
@@ -245,27 +245,32 @@ public class JAASLoginService extends AbstractLifeCycle implements LoginService
}
catch (LoginException e)
{
- LOG.warn(e);
+ LOG.debug(e);
}
catch (IOException e)
{
- LOG.warn(e);
+ LOG.info(e.getMessage());
+ LOG.debug(e);
}
catch (UnsupportedCallbackException e)
{
- LOG.warn(e);
+ LOG.info(e.getMessage());
+ LOG.debug(e);
}
catch (InstantiationException e)
{
- LOG.warn(e);
+ LOG.info(e.getMessage());
+ LOG.debug(e);
}
catch (IllegalAccessException e)
{
- LOG.warn(e);
+ LOG.info(e.getMessage());
+ LOG.debug(e);
}
catch (ClassNotFoundException e)
{
- LOG.warn(e);
+ LOG.info(e.getMessage());
+ LOG.debug(e);
}
return null;
}

Back to the top