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
_______________________________________________
logback-dev mailing list
[email protected]
http://mailman.qos.ch/mailman/listinfo/logback-dev

Reply via email to