package code.stuff;

/**
 * Description of the Class
 *
 * @author Sergio Antoy
 * @since June 17, 2003
 */
public class Logger {

    /**
     * Constructor for the Logger object
     */
    private Logger() {
    }


    /**
     * Description of the Method
     *
     * @param s Description of the Parameter
     */
    public static synchronized void log(String s) {
        System.err.print(s);
    }


    /**
     * Description of the Method
     *
     * @param s Description of the Parameter
     */
    public static synchronized void logln(String s) {
        System.err.println(s);
    }
}
