ucar.nc2.util.log.LoggerFactoryImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdm Show documentation
Show all versions of cdm 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;
import org.slf4j.Logger;
/**
* Default LoggerFactory uses org.slf4j.LoggerFactory
*
* @author caron
* @since 3/27/13
*/
public class LoggerFactoryImpl implements LoggerFactory {
@Override
public Logger getLogger(String name) {
return org.slf4j.LoggerFactory.getLogger(name);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy