Package org.jboss.logging

Examples of org.jboss.logging.Logger.fatal()


public class LoggingBean {

    public void log() {
        Logger log = Logger.getLogger(this.getClass().getName().toString());
        log.trace("Dummy - JBoss logging bean - trace");
        log.fatal("Dummy - JBoss logging bean - fatal");
    }

    public void myLog(String string) {
        Logger log = Logger.getLogger(this.getClass().getName().toString());
        log.warn(string);
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.