> scheduledFutures = loggerContext.getScheduledFutures();
+ assertFalse(scheduledFutures.isEmpty());
+ StatusPrinter.print(loggerContext);
+}
+
// check for deadlocks
@Test(timeout = 4000L)
public void scan_LOGBACK_474() throws JoranException, IOException, InterruptedException {
diff --git a/logback-site/src/site/pages/news.html b/logback-site/src/site/pages/news.html
index a993e1c13c..f5a0854bf1 100755
--- a/logback-site/src/site/pages/news.html
+++ b/logback-site/src/site/pages/news.html
@@ -58,6 +58,13 @@ , 2018, Release of version 1.3.0-alpha1
Logback's internal ThreadPoolExecutor
now has an
initial pool of 1 thread instead of 8 previously.
+ The scanPeriod attribute in
+ configuration file defaults to 1 minute. The documentation stated
+ as much but the code had not followed through. This issue was
+ reported in LOGBACK-1194
+ with F. Buehler providing the appropriate patch.
+
Removed "final" modifier for the
LoggerContext.getLogger(String)
method. This fixes LOGBACK-1308