Examples of ExceptionLogRecord


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

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

    /* (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
Copyright © 2018 www.massapi.com. 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.