Package com.betfair.cougar.logging.records

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


    /* (non-Javadoc)
      * @see com.betfair.cougar.logging.NewCougarLogger#log(java.lang.Throwable)
      */
    @Override
    public void log(Throwable exception) {
        logEvent(new ExceptionLogRecord(loggerName, exception));
    }
View Full Code Here


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

TOP

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

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.