ilex.test.LoggerTester Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opendcs Show documentation
Show all versions of opendcs Show documentation
A collection of software for aggregatting and processing environmental data such as from NOAA GOES satellites.
The newest version!
package ilex.test;
import ilex.util.Logger;
import ilex.util.StderrLogger;
class LoggerTester
{
/**
* The main function.
*/
public static void main(String[] args)
{
Logger.setLogger(new StderrLogger("LoggerTester"));
Logger.instance().log(Logger.E_WARNING,
"You shouldn't eat too much red meat");
}
}