Package com.betfair.cougar.logging.records

Examples of com.betfair.cougar.logging.records.SimpleLogRecord


        if (logger != null) {
            logger.log(level, message, args);
        } else {
            //This is a last ditch effort to say something useful before the logging
            //superstructure is initialized
            SimpleLogRecord record = new SimpleLogRecord("", level, message, args);
            System.out.println(record.getMessage());
        }
    }
View Full Code Here


    /* (non-Javadoc)
    * @see com.betfair.cougar.logging.NewCougarLogger#log(java.util.logging.Level, java.lang.String, java.lang.Object)
    */
    @Override
    public void log(Level level, String msg, Object... args) {
        logEvent(new SimpleLogRecord(loggerName, level, msg, args));
    }
View Full Code Here

TOP

Related Classes of com.betfair.cougar.logging.records.SimpleLogRecord

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.