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

com.ajjpj.asysmon.datasink.log.AStdOutDataSink Maven / Gradle / Ivy

There is a newer version: 1.0-pre28
Show newest version
package com.ajjpj.asysmon.datasink.log;


/**
 * This data sink prints measurement data to std out.
 *
 * @author arno
 */
public class AStdOutDataSink extends ALoggingDataSink {
    public static AStdOutDataSink INSTANCE = new AStdOutDataSink();

    @Override protected void log(String s) {
        System.out.println(s);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy