
The branch, master has been updated via 05db4942ca70e42ea3ad6d6c8c84a47143e39a3a (commit) from 6b87197e32713959bdebd4f315466e9466fd1ace (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=05db4942ca70e42ea3ad6d6c8... http://github.com/ceki/logback/commit/05db4942ca70e42ea3ad6d6c8c84a47143e39a... commit 05db4942ca70e42ea3ad6d6c8c84a47143e39a3a Author: Ceki Gulcu <ceki@rhino.localdomain> Date: Sun Dec 6 19:51:44 2009 -0500 print info on test start and test stop diff --git a/logback-classic/src/test/input/turbo/scan 1.xml b/logback-classic/src/test/input/turbo/scan 1.xml index 39878d3..58ee0c7 100644 --- a/logback-classic/src/test/input/turbo/scan 1.xml +++ b/logback-classic/src/test/input/turbo/scan 1.xml @@ -3,8 +3,7 @@ <configuration scan="true" scanPeriod="50 millisecond"> - <root level="ERROR"> - </root> + <root level="ERROR"/> </configuration> \ No newline at end of file diff --git a/logback-classic/src/test/java/ch/qos/logback/classic/turbo/ReconfigureOnChangeTest.java b/logback-classic/src/test/java/ch/qos/logback/classic/turbo/ReconfigureOnChangeTest.java index b3a80df..9b56d6f 100644 --- a/logback-classic/src/test/java/ch/qos/logback/classic/turbo/ReconfigureOnChangeTest.java +++ b/logback-classic/src/test/java/ch/qos/logback/classic/turbo/ReconfigureOnChangeTest.java @@ -21,6 +21,7 @@ import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; +import org.junit.After; import org.junit.Before; import org.junit.Test; import org.slf4j.helpers.BogoPerf; @@ -67,6 +68,7 @@ public class ReconfigureOnChangeTest { @Before public void setUp() { + System.out.println("======== TEST START"); // take into account propagation latency occurs on Linux or Mac if (Env.isLinux() || Env.isMac()) { sleepBetweenUpdates = 950; @@ -77,6 +79,10 @@ public class ReconfigureOnChangeTest { harness = new MultiThreadedHarness(totalTestDuration); } + @After + public void tearDown() { + System.out.println("======= TEST STOP"); + } void configure(File file) throws JoranException { JoranConfigurator jc = new JoranConfigurator(); jc.setContext(loggerContext); @@ -105,6 +111,7 @@ public class ReconfigureOnChangeTest { // Tests whether ConfigurationAction is installing ReconfigureOnChangeFilter @Test public void scan1() throws JoranException, IOException, InterruptedException { + System.out.println("***SCAN1"); File file = new File(SCAN1_FILE_AS_STR); configure(file); RunnableWithCounterAndDone[] runnableArray = buildRunnableArray(file); ----------------------------------------------------------------------- Summary of changes: logback-classic/src/test/input/turbo/scan 1.xml | 3 +-- .../classic/turbo/ReconfigureOnChangeTest.java | 7 +++++++ 2 files changed, 8 insertions(+), 2 deletions(-) hooks/post-receive -- Logback: the generic, reliable, fast and flexible logging framework.