
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 358ca5f91a5deae9bde0a8ef34bc39d682d6b346 (commit) from 31c713847189d2dc19cc51ce43f727e8ed58b917 (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=358ca5f91a5deae9bde0a8ef3... http://github.com/ceki/logback/commit/358ca5f91a5deae9bde0a8ef34bc39d682d6b3... commit 358ca5f91a5deae9bde0a8ef34bc39d682d6b346 Author: Ceki Gulcu <ceki@qos.ch> Date: Tue Oct 19 23:42:10 2010 +0200 minor refactoring diff --git a/logback-core/src/main/java/ch/qos/logback/core/status/OnConsoleStatusListener.java b/logback-core/src/main/java/ch/qos/logback/core/status/OnConsoleStatusListener.java index 332dcad..1547313 100644 --- a/logback-core/src/main/java/ch/qos/logback/core/status/OnConsoleStatusListener.java +++ b/logback-core/src/main/java/ch/qos/logback/core/status/OnConsoleStatusListener.java @@ -27,8 +27,9 @@ import java.util.List; public class OnConsoleStatusListener extends ContextAwareBase implements StatusListener, LifeCycle { + static final long DEFAULT_RESTROSPECTIVE = 300; boolean isStarted = false; - long retrospective = 300; + long retrospective = DEFAULT_RESTROSPECTIVE; private void print(Status status) { StringBuilder sb = new StringBuilder(); ----------------------------------------------------------------------- Summary of changes: .../core/status/OnConsoleStatusListener.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) hooks/post-receive -- Logback: the generic, reliable, fast and flexible logging framework.