Fixed logger usage.

This commit is contained in:
Michael Jumper
2012-03-26 11:51:14 -07:00
parent 7e240f8cce
commit e476350314
2 changed files with 4 additions and 4 deletions

View File

@@ -172,12 +172,12 @@ public class BasicGuacamoleTunnelServlet extends AuthenticatingHttpServlet {
// If no configs/credentials in session, not authorized // If no configs/credentials in session, not authorized
if (credentials == null || configs == null) if (credentials == null || configs == null)
throw new GuacamoleException("Cannot connect - user not logged in."); throw new GuacamoleSecurityException("Cannot connect - user not logged in.");
// Get authorized config // Get authorized config
GuacamoleConfiguration config = configs.get(id); GuacamoleConfiguration config = configs.get(id);
if (config == null) { if (config == null) {
logger.error("Configuration id={} not found.", id); logger.warn("Configuration id={} not found.", id);
throw new GuacamoleSecurityException("Requested configuration is not authorized."); throw new GuacamoleSecurityException("Requested configuration is not authorized.");
} }

View File

@@ -79,10 +79,10 @@ public class WebSocketSupportLoader implements ServletContextListener {
// Servlet API 3.0 unsupported // Servlet API 3.0 unsupported
catch (ClassNotFoundException e) { catch (ClassNotFoundException e) {
logger.error("Servlet API 3.0 not found.", e); logger.info("Servlet API 3.0 not found.", e);
} }
catch (NoSuchMethodException e) { catch (NoSuchMethodException e) {
logger.error("Servlet API 3.0 found, but incomplete.", e); logger.warn("Servlet API 3.0 found, but incomplete.", e);
} }
// Servlet API 3.0 found, but errors during use // Servlet API 3.0 found, but errors during use