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

ilex.test.LoggerTester Maven / Gradle / Ivy

Go to download

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");

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy