From aca63906e65d3b6bde9497ebfe6b45ad419c5220 Mon Sep 17 00:00:00 2001 From: jfarcand Date: Mon, 16 Jun 2014 10:27:50 -0400 Subject: [PATCH] Switch from WARN to DEBUG to prevent user being confused --- .../src/main/java/org/atmosphere/cpr/AtmosphereFramework.java | 2 +- modules/cpr/src/main/java/org/atmosphere/util/IOUtils.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/cpr/src/main/java/org/atmosphere/cpr/AtmosphereFramework.java b/modules/cpr/src/main/java/org/atmosphere/cpr/AtmosphereFramework.java index e26e73c22f..b9f6cfa643 100644 --- a/modules/cpr/src/main/java/org/atmosphere/cpr/AtmosphereFramework.java +++ b/modules/cpr/src/main/java/org/atmosphere/cpr/AtmosphereFramework.java @@ -1408,7 +1408,7 @@ protected boolean detectSupportedFramework(ServletConfig sc) throws Exception { return false; } - logger.warn("Missing META-INF/atmosphere.xml but found the Jersey runtime. Starting Jersey"); + logger.debug("Missing META-INF/atmosphere.xml but found the Jersey runtime. Starting Jersey"); // Atmosphere 1.1 : could add regressions // Jersey will itself handle the headers. diff --git a/modules/cpr/src/main/java/org/atmosphere/util/IOUtils.java b/modules/cpr/src/main/java/org/atmosphere/util/IOUtils.java index d308577643..dce2e28d57 100644 --- a/modules/cpr/src/main/java/org/atmosphere/util/IOUtils.java +++ b/modules/cpr/src/main/java/org/atmosphere/util/IOUtils.java @@ -343,7 +343,7 @@ public static Map readServiceFile } } } catch (IOException e) { - logger.warn("Unable to read META-INF/services/{} from class loader", path, e); + logger.debug("Unable to read META-INF/services/{} from class loader", path, e); } finally { close(is, reader); }