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

org.javafmi.framework.Logger Maven / Gradle / Ivy

/*
 *  Copyright 2013-2016 SIANI - ULPGC
 *
 *  This File is part of JavaFMI Project
 *
 *  JavaFMI Project is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License as published by
 *  the Free Software Foundation, either version 3 of the License.
 *
 *  JavaFMI Project is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 *  GNU Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public License
 *  along with JavaFMI. If not, see .
 */

package org.javafmi.framework;

import java.io.PrintStream;

public class Logger {
    private final String instanceName;
    private final PrintStream outStream;

    public Logger(String instanceName, PrintStream outStream) {

        this.instanceName = instanceName;
        this.outStream = outStream;
    }

    public void info(String message) {
        log("INFO", message);
    }

    public void warning(String message) {
        log("WARNING", message);
    }

    public void error(String message) {
        log("ERROR", message);
    }

    private void log(String category, String message) {
        outStream.println(instanceName + ":" + category + ":" + message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy