All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.seam.log.Log Maven / Gradle / Ivy

Go to download

This module create facades for all the APIs (classes, interfaces and annotations) that are use in the test code. The objective is to avoid the needed to download all the framework supported by the static analyzer.

There is a newer version: 1.8.0
Show newest version
package org.jboss.seam.log;

/**
 * https://github.com/seam2/jboss-seam/blob/f3077fee9d04b2b3545628cd9e6b58c859feb988/jboss-seam/src/main/java/org/jboss/seam/log/Log.java
 */
public interface Log {
    public void trace(Object object, Object... params);
    public void trace(Object object, Throwable t, Object... params);
    public void debug(Object object, Object... params);
    public void debug(Object object, Throwable t, Object... params);
    public void info(Object object, Object... params);
    public void info(Object object, Throwable t, Object... params);
    public void warn(Object object, Object... params);
    public void warn(Object object, Throwable t, Object... params);
    public void error(Object object, Object... params);
    public void error(Object object, Throwable t, Object... params);
    public void fatal(Object object, Object... params);
    public void fatal(Object object, Throwable t, Object... params);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy