Skip to content

Commit

Permalink
Switch from WARN to DEBUG to prevent user being confused
Browse files Browse the repository at this point in the history
  • Loading branch information
jfarcand committed Jun 16, 2014
1 parent 5041846 commit aca6390
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion modules/cpr/src/main/java/org/atmosphere/util/IOUtils.java
Expand Up @@ -343,7 +343,7 @@ public static Map<String, AtmosphereFramework.MetaServiceAction> 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);
}
Expand Down

0 comments on commit aca6390

Please sign in to comment.