ucar.nc2.util.log.LoggerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netcdf Show documentation
Show all versions of netcdf Show documentation
The NetCDF-Java Library is a Java interface to NetCDF files,
as well as to many other types of scientific data formats.
The newest version!
package ucar.nc2.util.log;
/**
* Interface for generating org.slf4j.Logger objects.
* Allows us to keep log4j dependencies out of the cdm
*
* @author caron
* @since 3/27/13
*/
public interface LoggerFactory {
public org.slf4j.Logger getLogger(String name);
}