Package org.apache.qpid.server.logging.rawloggers

Examples of org.apache.qpid.server.logging.rawloggers.Log4jMessageLogger


    }

    public void initialise(int instanceID) throws Exception
    {
        _rootMessageLogger = new RootMessageLoggerImpl(_configuration,
                                                       new Log4jMessageLogger());

        _registryName = String.valueOf(instanceID);

        // Set the Actor for current log messages
        CurrentActor.set(new BrokerActor(_registryName, _rootMessageLogger));
View Full Code Here


    }

    public void initialise(int instanceID) throws Exception
    {
        _rootMessageLogger = new RootMessageLoggerImpl(_configuration,
                                                       new Log4jMessageLogger());

        //Add a Test Actor as a lot of our System Tests reach in to the broker
        // and manipulate it so the CurrentActor is not set.
        CurrentActor.set(new TestLogActor(_rootMessageLogger));
View Full Code Here

    public void initialise(int instanceID) throws Exception
    {
        _logger.info("Initialising NullApplicationRegistry");

        _rootMessageLogger = new RootMessageLoggerImpl(_configuration, new Log4jMessageLogger());

        //We should use a Test Actor Here not the Broker Actor
        CurrentActor.set(new TestLogActor(_rootMessageLogger));

        _configuration.setHousekeepingExpiredMessageCheckPeriod(200);
View Full Code Here

TOP

Related Classes of org.apache.qpid.server.logging.rawloggers.Log4jMessageLogger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.