
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Logback: the generic, reliable, fast and flexible logging framework.". The branch, master has been updated via 8be92873e98cb353b44b16456b2b1b9e5402d3d7 (commit) from 9e47173e73d37a68362aa7acf70ed46cd951ae30 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.qos.ch/gitweb/?p=logback.git;a=commit;h=8be92873e98cb353b44b16456... http://github.com/ceki/logback/commit/8be92873e98cb353b44b16456b2b1b9e5402d3... commit 8be92873e98cb353b44b16456b2b1b9e5402d3d7 Author: Ceki Gulcu <ceki@qos.ch> Date: Wed Jan 26 16:18:50 2011 +0100 fix LBCLASSIC-246 diff --git a/logback-core/src/main/java/ch/qos/logback/core/joran/spi/ConfigurationWatchList.java b/logback-core/src/main/java/ch/qos/logback/core/joran/spi/ConfigurationWatchList.java index 996058d..567b4d3 100644 --- a/logback-core/src/main/java/ch/qos/logback/core/joran/spi/ConfigurationWatchList.java +++ b/logback-core/src/main/java/ch/qos/logback/core/joran/spi/ConfigurationWatchList.java @@ -68,7 +68,7 @@ public class ConfigurationWatchList extends ContextAwareBase { File file = new File(URLDecoder.decode(url.getFile())); return file; } else { - addError("URL [" + url + "] is not of type file"); + addInfo("URL [" + url + "] is not of type file"); return null; } } diff --git a/logback-site/src/site/pages/news.html b/logback-site/src/site/pages/news.html index c39fb87..52db323 100644 --- a/logback-site/src/site/pages/news.html +++ b/logback-site/src/site/pages/news.html @@ -28,6 +28,17 @@ <hr width="80%" align="center" /> + <h3>xxx, 2011 - Release of version 0.9.29</h3> + + <p><code>ConfigurationWatchList</code> no longer emits an error + message when it encouters a configuraton file placed in a jar + file, fixing <a + href="http://jira.qos.ch/browse/LBCLASSIC-246">LBCLASSIC-246</a> + as reported by Joern Huxhorn. + </p> + + <hr width="80%" align="center" /> + <h3>January 25th, 2011 - Release of version 0.9.28</h3> <div style="border: 1px solid #F44; background-color: #FED; padding-left: 1ex; padding-right: 1ex;"> ----------------------------------------------------------------------- Summary of changes: .../core/joran/spi/ConfigurationWatchList.java | 2 +- logback-site/src/site/pages/news.html | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletions(-) hooks/post-receive -- Logback: the generic, reliable, fast and flexible logging framework.