Antony Stubbs commented on Sub-task LOGBACK-717
Ok, now I've added the programatic status listener registration too;
{code}
        LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory();
        StatusManager statusManager = lc.getStatusManager();
        OnConsoleStatusListener onConsoleListener = new OnConsoleStatusListener();
        statusManager.add(onConsoleListener);
        statusManager.add(new StatusListener() {
            @Override
            public void addStatusEvent(Status status) {
                System.out.println(status);
            }
        });
        log.info("hi!");
{code}
and still nothing. No idea what's going on. 1.0.7.
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira